diff --git a/ChangeLog b/ChangeLog index 4df55e5fd7..a137c4a03c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -34,6 +34,8 @@ phpMyAdmin - ChangeLog + Show/hide column in table Browse - bug #3353856 [AJAX] AJAX dialogs use wrong font-size - bug #3354356 [interface] Timepicker does not work in AJAX dialogs ++ AJAX for table Structure Indexes Edit ++ AJAX for table Structure column Change 3.4.4.0 (not yet released) - bug #3323060 [parser] SQL parser breaks AJAX requests if query has unclosed quotes @@ -43,6 +45,7 @@ phpMyAdmin - ChangeLog - bug #3353649 [interface] "Create an index on X columns" form not validated - bug #3350790 [interface] JS error in Table->Structure->Index->Edit - bug #3353811 [interface] Info message has "error" class +- bug #3357837 [interface] TABbing through a NULL field in the inline mode resets NULL 3.4.3.1 (2011-07-02) - [security] Fixed possible session manipulation in swekey authentication, see PMASA-2011-5 diff --git a/db_structure.php b/db_structure.php index 0054585bb4..000ab6afbf 100644 --- a/db_structure.php +++ b/db_structure.php @@ -13,6 +13,7 @@ require_once './libraries/common.inc.php'; $GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js'; $GLOBALS['js_include'][] = 'db_structure.js'; $GLOBALS['js_include'][] = 'tbl_change.js'; +$GLOBALS['js_include'][] = 'jquery/timepicker.js'; /** * Prepares the tables list if the user where not redirected to this script diff --git a/js/common.js b/js/common.js index b3e996c022..b595108f83 100644 --- a/js/common.js +++ b/js/common.js @@ -14,78 +14,6 @@ var querywindow = ''; */ var query_to_load = ''; -/** - * attach a function to object event - * - * - * addEvent(window, 'load', PMA_initPage); - * - * @param object or id - * @param string event type (load, mouseover, focus, ...) - * @param function to be attached - */ -function addEvent(obj, type, fn) -{ - if (obj.attachEvent) { - obj['e' + type + fn] = fn; - obj[type + fn] = function() {obj['e' + type + fn](window.event);} - obj.attachEvent('on' + type, obj[type + fn]); - } else { - obj.addEventListener(type, fn, false); - } -} - -/** - * detach/remove a function from an object event - * - * @param object or id - * @param event type (load, mouseover, focus, ...) - * @param function naem of function to be attached - */ -function removeEvent(obj, type, fn) -{ - if (obj.detachEvent) { - obj.detachEvent('on' + type, obj[type + fn]); - obj[type + fn] = null; - } else { - obj.removeEventListener(type, fn, false); - } -} - -/** - * get DOM elements by html class - * - * @param string class_name - name of class - * @param node node - search only sub nodes of this node (optional) - * @param string tag - search only these tags (optional) - */ -function getElementsByClassName(class_name, node, tag) -{ - var classElements = new Array(); - - if (node == null) { - node = document; - } - if (tag == null) { - tag = '*'; - } - - var j = 0, teststr; - var els = node.getElementsByTagName(tag); - var elsLen = els.length; - - for (i = 0; i < elsLen; i++) { - if (els[i].className.indexOf(class_name) != -1) { - teststr = "," + els[i].className.split(" ").join(",") + ","; - if (teststr.indexOf("," + class_name + ",") != -1) { - classElements[j] = els[i]; - j++; - } - } - } - return classElements; -} - /** * sets current selected db * diff --git a/js/db_structure.js b/js/db_structure.js index ad55341b60..b1c2ff05a7 100644 --- a/js/db_structure.js +++ b/js/db_structure.js @@ -61,12 +61,12 @@ $(document).ready(function() { $("td.insert_table a.ajax").live('click', function(event){ event.preventDefault(); currrent_insert_table = $(this); - var url = $(this).attr("href"); - if (url.substring(0, 15) == "tbl_change.php?") { - url = url.substring(15); + var $url = $(this).attr("href"); + if ($url.substring(0, 15) == "tbl_change.php?") { + $url = $url.substring(15); } - var div = $('
'); + var $div = $('
'); var target = "tbl_change.php"; /** @@ -75,38 +75,43 @@ $(document).ready(function() { */ var button_options = {}; // in the following function we need to use $(this) - button_options[PMA_messages['strCancel']] = function() {$(this).parent().dialog('close').remove();} + button_options[PMA_messages['strCancel']] = function() {$(this).dialog('close').remove();} var button_options_error = {}; - button_options_error[PMA_messages['strOK']] = function() {$(this).parent().dialog('close').remove();} + button_options_error[PMA_messages['strOK']] = function() {$(this).dialog('close').remove();} var $msgbox = PMA_ajaxShowMessage(); - $.get( target , url+"&ajax_request=true" , function(data) { + $.get( target , $url+"&ajax_request=true" , function(data) { //in the case of an error, show the error message returned. if (data.success != undefined && data.success == false) { - div + $div .append(data.error) .dialog({ title: PMA_messages['strInsertTable'], height: 230, width: 900, + modal: true, open: PMA_verifyTypeOfAllColumns, buttons : button_options_error })// end dialog options } else { - div - .append(data) - .dialog({ - title: PMA_messages['strInsertTable'], - height: 600, - width: 900, - open: PMA_verifyTypeOfAllColumns, - buttons : button_options - }) + var $dialog = $div + .append(data) + .dialog({ + title: PMA_messages['strInsertTable'], + height: 600, + width: 900, + modal: true, + open: PMA_verifyTypeOfAllColumns, + buttons : button_options + });// end dialog options //Remove the top menu container from the dialog - .find("#topmenucontainer").hide() - ; // end dialog options + $dialog.find("#topmenucontainer").hide(); + //Adding the datetime pikers for the dialog + $dialog.find('.datefield, .datetimefield').each(function () { + PMA_addDatepicker($(this)); + }); $(".insertRowTable").addClass("ajax"); $("#buttonYes").addClass("ajax"); } diff --git a/js/functions.js b/js/functions.js index d226a0c29a..85d9ed90a5 100644 --- a/js/functions.js +++ b/js/functions.js @@ -2152,9 +2152,45 @@ function displayMoreTableOpts() { } }); } + } $(document).ready(initTooltips); +/** + * Ensures indexes names are valid according to their type and, for a primary + * key, lock index name to 'PRIMARY' + * @param string form_id Variable which parses the form name as + * the input + * @return boolean false if there is no index form, true else + */ +function checkIndexName(form_id) +{ + if ($("#"+form_id).length == 0) { + return false; + } + + // Gets the elements pointers + var $the_idx_name = $("#input_index_name"); + var $the_idx_type = $("#select_index_type"); + + // Index is a primary key + if ($the_idx_type.find("option:selected").attr("value") == 'PRIMARY') { + $the_idx_name.attr("value", 'PRIMARY'); + $the_idx_name.attr("disabled", true); + } + + // Other cases + else { + if ($the_idx_name.attr("value") == 'PRIMARY') { + $the_idx_name.attr("value", ''); + } + $the_idx_name.attr("disabled", false); + } + + return true; +} // end of the 'checkIndexName()' function + + /* Displays tooltips */ function initTooltips() { // Hide the footnotes from the footer (which are displayed for diff --git a/js/indexes.js b/js/indexes.js index ef6f877bdd..abbf4d8b49 100644 --- a/js/indexes.js +++ b/js/indexes.js @@ -4,45 +4,6 @@ * */ -/** - * Ensures indexes names are valid according to their type and, for a primary - * key, lock index name to 'PRIMARY' - * - * @return boolean false if there is no index form, true else - */ -function checkIndexName() -{ - if (typeof(document.forms['index_frm']) == 'undefined') { - return false; - } - - // Gets the elements pointers - var the_idx_name = document.forms['index_frm'].elements['index[Key_name]']; - var the_idx_type = document.forms['index_frm'].elements['index[Index_type]']; - - // Index is a primary key - if (the_idx_type.options[0].value == 'PRIMARY' && the_idx_type.options[0].selected) { - document.forms['index_frm'].elements['index[Key_name]'].value = 'PRIMARY'; - if (typeof(the_idx_name.disabled) != 'undefined') { - document.forms['index_frm'].elements['index[Key_name]'].disabled = true; - } - } - - // Other cases - else { - if (the_idx_name.value == 'PRIMARY') { - document.forms['index_frm'].elements['index[Key_name]'].value = ''; - } - if (typeof(the_idx_name.disabled) != 'undefined') { - document.forms['index_frm'].elements['index[Key_name]'].disabled = false; - } - } - - return true; -} // end of the 'checkIndexName()' function - -onload = checkIndexName; - /** * Hides/shows the inputs and submits appropriately depending * on whether the index type chosen is 'SPATIAL' or not. @@ -56,7 +17,7 @@ function checkIndexType() /** * @var Object Table header for the size column. */ - $size_header = $('thead tr th:nth-child(2)'); + $size_header = $('#index_columns thead tr th:nth-child(2)'); /** * @var Object Inputs to specify the columns for the index. */ @@ -132,7 +93,12 @@ function checkIndexType() */ $(document).ready(function() { checkIndexType(); - $('#select_index_type').bind('change', checkIndexType); + checkIndexName("index_frm"); + $('#select_index_type').live('change', function(event){ + event.preventDefault(); + checkIndexType(); + checkIndexName("index_frm"); + }); }); /**#@- */ diff --git a/js/sql.js b/js/sql.js index 48fb65f609..9b54bb9a17 100644 --- a/js/sql.js +++ b/js/sql.js @@ -685,7 +685,10 @@ $(document).ready(function() { }) } else { $this_field.find('textarea').live('keypress', function(e) { - $('.checkbox_null_' + field_name + '_' + this_row_index).attr('checked', false); + // FF errorneously triggers for modifier keys such as tab (bug #3357837) + if (e.which != 0) { + $('.checkbox_null_' + field_name + '_' + this_row_index).attr('checked', false); + } }) } diff --git a/js/tbl_change.js b/js/tbl_change.js index 8fc7eca337..5e6ce842e0 100644 --- a/js/tbl_change.js +++ b/js/tbl_change.js @@ -70,21 +70,8 @@ function daysInFebruary (year){ //function to convert single digit to double digit function fractionReplace(num) { - num=parseInt(num); - var res="00"; - switch(num) - { - case 1:res= "01";break; - case 2:res= "02";break; - case 3:res= "03";break; - case 4:res= "04";break; - case 5:res= "05";break; - case 6:res= "06";break; - case 7:res= "07";break; - case 8:res= "08";break; - case 9:res= "09";break; - } - return res; + num = parseInt(num); + return num >= 1 && num <= 9 ? '0' + num : '00'; } /* function to check the validity of date diff --git a/js/tbl_structure.js b/js/tbl_structure.js index d4ef1cdf97..c58bd5443a 100644 --- a/js/tbl_structure.js +++ b/js/tbl_structure.js @@ -153,56 +153,34 @@ $(document).ready(function() { event.preventDefault(); /*Check whether atleast one row is selected for change*/ - if($("#tablestructure tbody tr").hasClass("marked")){ - var div = $('
'); - - /** - * @var button_options Object that stores the options passed to jQueryUI - * dialog - */ - var button_options = {}; - // in the following function we need to use $(this) - button_options[PMA_messages['strCancel']] = function() {$(this).parent().dialog('close').remove();} - - var button_options_error = {}; - button_options_error[PMA_messages['strOK']] = function() {$(this).parent().dialog('close').remove();} + if ($("#tablestructure tbody tr").hasClass("marked")) { + /*Define the action and $url variabls for the post method*/ var $form = $("#fieldsForm"); - var $msgbox = PMA_ajaxShowMessage(); - - $.get( $form.attr('action') , $form.serialize()+"&ajax_request=true&submit_mult=change" , function(data) { - //in the case of an error, show the error message returned. - if (data.success != undefined && data.success == false) { - div - .append(data.error) - .dialog({ - title: PMA_messages['strChangeTbl'], - height: 230, - width: 900, - open: PMA_verifyTypeOfAllColumns, - buttons : button_options_error - })// end dialog options - } else { - div - .append(data) - .dialog({ - title: PMA_messages['strChangeTbl'], - height: 600, - width: 900, - open: PMA_verifyTypeOfAllColumns, - buttons : button_options - }) - //Remove the top menu container from the dialog - .find("#topmenucontainer").hide() - ; // end dialog options - $("#append_fields_form input[name=do_save_data]").addClass("ajax"); - } - PMA_ajaxRemoveMessage($msgbox); - }) // end $.get() + var action = $form.attr('action'); + var url = $form.serialize()+"&ajax_request=true&submit_mult=change"; + /*Calling for the changeColumns fucntion*/ + changeColumns(action,url); } else { PMA_ajaxShowMessage(PMA_messages['strNoRowSelected']); } }); + /** + *Ajax event handler for single column change + **/ + $("#fieldsForm.ajax #tablestructure tbody tr td.edit a").live('click', function(event){ + event.preventDefault(); + /*Define the action and $url variabls for the post method*/ + var action = "tbl_alter.php"; + var url = $(this).attr('href'); + if (url.substring(0, 13) == "tbl_alter.php") { + url = url.substring(14, url.length); + } + url = url + "&ajax_request=true"; + /*Calling for the changeColumns fucntion*/ + changeColumns(action,url); + }); + /** *Ajax action for submitting the column change form **/ @@ -269,10 +247,10 @@ $(document).ready(function() { */ var button_options = {}; // in the following function we need to use $(this) - button_options[PMA_messages['strCancel']] = function() {$(this).parent().dialog('close').remove();} + button_options[PMA_messages['strCancel']] = function() {$(this).dialog('close').remove();} var button_options_error = {}; - button_options_error[PMA_messages['strOK']] = function() {$(this).parent().dialog('close').remove();} + button_options_error[PMA_messages['strOK']] = function() {$(this).dialog('close').remove();} var $msgbox = PMA_ajaxShowMessage(); $.get( "tbl_indexes.php" , url , function(data) { @@ -285,6 +263,7 @@ $(document).ready(function() { height: 230, width: 900, open: PMA_verifyTypeOfAllColumns, + modal: true, buttons : button_options_error })// end dialog options } else { @@ -295,11 +274,13 @@ $(document).ready(function() { height: 600, width: 900, open: PMA_verifyTypeOfAllColumns, + modal: true, buttons : button_options }) //Remove the top menu container from the dialog .find("#topmenucontainer").hide() ; // end dialog options + checkIndexName("index_frm"); } PMA_ajaxRemoveMessage($msgbox); }) // end $.get() @@ -337,8 +318,14 @@ $(document).ready(function() { } } else { - var temp_div = $("
").append(data.error); - var error = $(temp_div).find(".error code").addClass("error"); + if(data.error != undefined) { + var temp_div = $("
").append(data.error); + if($(temp_div).find(".error code").length != 0) { + var error = $(temp_div).find(".error code").addClass("error"); + } else { + var error = temp_div; + } + } PMA_ajaxShowMessage(error); } @@ -360,7 +347,7 @@ $(document).ready(function() { $.post($form.attr('action'), $form.serialize()+"&add_fields=Go", function(data) { $("#index_columns").remove(); var temp_div = $("
").append(data); - $(temp_div).find("#index_columns").insertAfter("#index_frm fieldset .error"); + $(temp_div).find("#index_columns").appendTo("#index_edit_fields"); }) // end $.post() }) // end insert table button "Go" @@ -393,3 +380,66 @@ $(document).ready(function() { }) // end $(document).ready() + +/** + * Loads the append_fields_form to the Change dialog allowing users + * to change the columns + * @param string action Variable which parses the name of the + * destination file + * @param string $url Variable which parses the data for the + * post action + */ +function changeColumns(action,url) { + /*Remove the hidden dialogs if there are*/ + if ($('#change_column_dialog').length != 0) { + $('#change_column_dialog').remove(); + } + var div = $('
'); + + /** + * @var button_options Object that stores the options passed to jQueryUI + * dialog + */ + var button_options = {}; + // in the following function we need to use $(this) + button_options[PMA_messages['strCancel']] = function() {$(this).dialog('close').remove();} + + var button_options_error = {}; + button_options_error[PMA_messages['strOK']] = function() {$(this).dialog('close').remove();} + var $msgbox = PMA_ajaxShowMessage(); + + $.get( action , url , function(data) { + //in the case of an error, show the error message returned. + if (data.success != undefined && data.success == false) { + div + .append(data.error) + .dialog({ + title: PMA_messages['strChangeTbl'], + height: 230, + width: 900, + modal: true, + open: PMA_verifyTypeOfAllColumns, + buttons : button_options_error + })// end dialog options + } else { + div + .append(data) + .dialog({ + title: PMA_messages['strChangeTbl'], + height: 600, + width: 900, + modal: true, + open: PMA_verifyTypeOfAllColumns, + buttons : button_options + }) + //Remove the top menu container from the dialog + .find("#topmenucontainer").hide() + ; // end dialog options + $("#append_fields_form input[name=do_save_data]").addClass("ajax"); + /*changed the z-index of the enum editor to allow the edit*/ + $("#enum_editor").css("z-index", "1100"); + } + PMA_ajaxRemoveMessage($msgbox); + }) // end $.get() +} + diff --git a/libraries/Table.class.php b/libraries/Table.class.php index 37df829d74..9a15c48e53 100644 --- a/libraries/Table.class.php +++ b/libraries/Table.class.php @@ -336,13 +336,11 @@ class PMA_Table $is_timestamp = strpos(strtoupper($type), 'TIMESTAMP') !== false; - /** - * @todo include db-name - */ $query = PMA_backquote($name) . ' ' . $type; if ($length != '' - && !preg_match('@^(DATE|DATETIME|TIME|TINYBLOB|TINYTEXT|BLOB|TEXT|MEDIUMBLOB|MEDIUMTEXT|LONGBLOB|LONGTEXT)$@i', $type)) { + && !preg_match('@^(DATE|DATETIME|TIME|TINYBLOB|TINYTEXT|BLOB|TEXT|MEDIUMBLOB|MEDIUMTEXT|LONGBLOB|LONGTEXT' + . '|SERIAL|BOOLEAN)$@i', $type)) { $query .= '(' . $length . ')'; } diff --git a/libraries/core.lib.php b/libraries/core.lib.php index e61c14699d..371aec2505 100644 --- a/libraries/core.lib.php +++ b/libraries/core.lib.php @@ -253,7 +253,13 @@ function PMA_getPHPDocLink($target) { */ function PMA_warnMissingExtension($extension, $fatal = false, $extra = '') { - $message = sprintf(__('The %s extension is missing. Please check your PHP configuration.'), + /* Gettext does not have to be loaded yet here */ + if (function_exists('__')) { + $message = __('The %s extension is missing. Please check your PHP configuration.'); + } else { + $message = 'The %s extension is missing. Please check your PHP configuration.'; + } + $message = sprintf($message, '[a@' . PMA_getPHPDocLink('book.' . $extension . '.php') . '@Documentation][em]' . $extension . '[/em][/a]'); if ($extra != '') { $message .= ' ' . $extra; diff --git a/po/ar.po b/po/ar.po index 77b66a2efb..0eda1043cd 100644 --- a/po/ar.po +++ b/po/ar.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-06-27 03:38+0200\n" +"PO-Revision-Date: 2011-07-09 03:43+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" "Language: ar\n" @@ -82,7 +82,6 @@ msgstr "تنفيذ" #: browse_foreigners.php:169 browse_foreigners.php:173 #: libraries/Index.class.php:431 tbl_tracking.php:313 -#, fuzzy msgid "Keyname" msgstr "اسم المفتاح" @@ -406,16 +405,16 @@ msgid "Last check" msgstr "التحقق الأخير" #: db_printview.php:220 db_structure.php:432 -#, fuzzy, php-format +#, php-format #| msgid "%s table(s)" msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s جدول (جداول)" msgstr[1] "%s جدول (جداول)" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgstr[2] "%s جدول (جداول)" +msgstr[3] "%s جدول (جداول)" +msgstr[4] "%s جدول (جداول)" +msgstr[5] "%s جدول (جداول)" #: db_qbe.php:41 msgid "You have to choose at least one column to display" @@ -512,15 +511,15 @@ msgid "Your SQL query has been executed successfully" msgstr "تم تنفيذ إستعلام SQL بنجاح" #: db_routines.php:158 -#, fuzzy, php-format +#, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "%d تأثر بالإجراء الأخير" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgstr[1] "%d تأثر بالإجراء الأخير" +msgstr[2] "%d تأثر بالإجراء الأخير" +msgstr[3] "%d تأثر بالإجراء الأخير" +msgstr[4] "%d تأثر بالإجراء الأخير" +msgstr[5] "%d تأثر بالإجراء الأخير" #: db_routines.php:168 #, php-format @@ -3183,54 +3182,52 @@ msgstr "" #: libraries/config/messages.inc.php:206 msgid "Changes tracking" -msgstr "" +msgstr "تعقب التغيرات" #: libraries/config/messages.inc.php:207 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." -msgstr "" +msgstr "تعقب التغيرات الحاصلة على قاعدة البيانات." #: libraries/config/messages.inc.php:208 msgid "Customize export options" -msgstr "" +msgstr "تخصيص خيارات التصدير" #: libraries/config/messages.inc.php:210 msgid "Customize import defaults" -msgstr "" +msgstr "تخصيص خيارات الإستيراد" #: libraries/config/messages.inc.php:211 msgid "Customize navigation frame" -msgstr "" +msgstr "تخصيص اطار التصفح" #: libraries/config/messages.inc.php:212 msgid "Customize main frame" -msgstr "" +msgstr "تخصيص الإطار الرئيسي" #: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 #: setup/frames/menu.inc.php:17 msgid "SQL queries" -msgstr "" +msgstr "إستعلام SQL" #: libraries/config/messages.inc.php:215 msgid "SQL Query box" -msgstr "" +msgstr "صندوق إستعلام SQL" #: libraries/config/messages.inc.php:216 msgid "Customize links shown in SQL Query boxes" -msgstr "" +msgstr "تخصيص الروابط الموجودة في صندوق إستعلام SQL" #: libraries/config/messages.inc.php:219 -#, fuzzy #| msgid "Server variables and settings" msgid "SQL queries settings" -msgstr "متغيرات وإعدادات الخادم" +msgstr "إعدادات إستعلامات SQL" #: libraries/config/messages.inc.php:220 -#, fuzzy #| msgid "SQL history" msgid "SQL Validator" -msgstr "نصوص SQL سابقة" +msgstr "مدقق SQL" #: libraries/config/messages.inc.php:221 msgid "" @@ -3242,69 +3239,70 @@ msgstr "" #: libraries/config/messages.inc.php:222 msgid "Startup" -msgstr "" +msgstr "بدء التشغيل" #: libraries/config/messages.inc.php:223 msgid "Customize startup page" -msgstr "" +msgstr "تخصيص صفحة بدء التشغيل" #: libraries/config/messages.inc.php:224 msgid "Tabs" -msgstr "" +msgstr "التبويبات" #: libraries/config/messages.inc.php:225 msgid "Choose how you want tabs to work" -msgstr "" +msgstr "إختر الطريقة التي تعمل بها التبويبات" #: libraries/config/messages.inc.php:226 -#, fuzzy #| msgid "Use text field" msgid "Text fields" -msgstr "استخدم حقل نص" +msgstr "حقول نصية" #: libraries/config/messages.inc.php:227 -#, fuzzy #| msgid "Use text field" msgid "Customize text input fields" -msgstr "استخدم حقل نص" +msgstr "تخصيص حقول الإدخال النصية" #: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 msgid "Texy! text" -msgstr "" +msgstr "نص" #: libraries/config/messages.inc.php:230 -#, fuzzy #| msgid "Warning" msgid "Warnings" -msgstr "تحذير" +msgstr "تحذيرات" #: libraries/config/messages.inc.php:231 msgid "Disable some of the warnings shown by phpMyAdmin" -msgstr "" +msgstr "إلغاء عرض بعض التحذيرات في phpMyAdmin" #: libraries/config/messages.inc.php:232 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" +"تفعيل ضغط [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] لعمليات التصدير " +"والإستيراد" #: libraries/config/messages.inc.php:233 msgid "GZip" -msgstr "" +msgstr "GZip" #: libraries/config/messages.inc.php:234 msgid "Extra parameters for iconv" -msgstr "" +msgstr "مدخلات إضافية لـ iconv" #: libraries/config/messages.inc.php:235 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" +"إذا كان مفعل , فإن phpMyAdmin سوف تستمر في تنفيذ الإستعلامات المتعددة حتى " +"لو فشل بعضها" #: libraries/config/messages.inc.php:236 msgid "Ignore multiple statement errors" -msgstr "" +msgstr "تجاهل أخطاء الجمل المتعددة" #: libraries/config/messages.inc.php:237 msgid "" @@ -3315,12 +3313,12 @@ msgstr "" #: libraries/config/messages.inc.php:238 msgid "Partial import: allow interrupt" -msgstr "" +msgstr "الإستيراد الجزئي: السماح بالمقاطعة" #: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" -msgstr "" +msgstr "لاتحبط عندما يكون الخطأ في جمل الإدخال INSERT" #: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 @@ -3332,83 +3330,83 @@ 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:247 msgid "Format of imported file" -msgstr "" +msgstr "هيئة الملفات المستوردة" #: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" -msgstr "" +msgstr "إستعمل الجملة LOCAL" #: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 #: libraries/config/messages.inc.php:263 -#, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" -msgstr "ضع أسماء الحقول في السطر الأول" +msgstr "ضع أسماء الصفوف في السطر الأول" #: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 msgid "Do not import empty rows" -msgstr "" +msgstr "لاتستورد صفوف فارغة" #: libraries/config/messages.inc.php:256 msgid "Import currencies ($5.00 to 5.00)" -msgstr "" +msgstr "عملات الإستيراد ($5.00 إلى 5.00)" #: libraries/config/messages.inc.php:257 msgid "Import percentages as proper decimals (12.00% to .12)" -msgstr "" +msgstr "النسبة المئوية للإستيراد كرقم عشري (12.00% إلى .12)" #: libraries/config/messages.inc.php:258 msgid "Number of queries to skip from start" -msgstr "" +msgstr "عدد الإستعلامات التي يتخطاها من البداية" #: libraries/config/messages.inc.php:259 msgid "Partial import: skip queries" -msgstr "" +msgstr "إستيراد جزئي: تخطي الإستعلامات" #: libraries/config/messages.inc.php:261 -#, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" -msgstr "أضف قيمة AUTO_INCREMENT" +msgstr "لاتستعمل AUTO_INCREMENT للقيم الصفرية" #: libraries/config/messages.inc.php:264 msgid "Initial state for sliders" -msgstr "" +msgstr "الحالة الأولية" #: libraries/config/messages.inc.php:265 msgid "How many rows can be inserted at one time" -msgstr "" +msgstr "كم عدد الصفوف التي يمكن إدخالها مرة واحدة" #: libraries/config/messages.inc.php:266 msgid "Number of inserted rows" -msgstr "" +msgstr "عدد الصفوف المدخلة" #: libraries/config/messages.inc.php:267 msgid "Target for quick access icon" -msgstr "" +msgstr "الهدف لإيقونة الوصول السريع" #: libraries/config/messages.inc.php:268 msgid "Show logo in left frame" -msgstr "" +msgstr "عرض الشعار في الإطار الأيسر" #: libraries/config/messages.inc.php:269 msgid "Display logo" -msgstr "" +msgstr "عرض الشعار" #: libraries/config/messages.inc.php:270 msgid "Display server choice at the top of the left frame" -msgstr "" +msgstr "عرض إختيار الخادم في الجزء العلوي من الإطار الأيسر" #: libraries/config/messages.inc.php:271 msgid "Display servers selection" -msgstr "" +msgstr "عرض إختيار الخوادم" #: libraries/config/messages.inc.php:272 msgid "Minimum number of tables to display the table filter box" -msgstr "" +msgstr "اقل عدد جداول تعرض في صندوق تصفية الجداول" #: libraries/config/messages.inc.php:273 msgid "String that separates databases into different tree levels" @@ -3416,7 +3414,7 @@ msgstr "" #: libraries/config/messages.inc.php:274 msgid "Database tree separator" -msgstr "" +msgstr "فاصل شجرة قاعدة البيانات" #: libraries/config/messages.inc.php:275 msgid "" @@ -3426,19 +3424,19 @@ msgstr "" #: libraries/config/messages.inc.php:276 msgid "Display databases in a tree" -msgstr "" +msgstr "عرض قواعد البيانات في شجرة" #: libraries/config/messages.inc.php:277 msgid "Disable this if you want to see all databases at once" -msgstr "" +msgstr "تعطيل هذا إذا كنت تريد رؤية قواعد البيانات كلٌ على حدا" #: libraries/config/messages.inc.php:278 msgid "Use light version" -msgstr "" +msgstr "إستخدم نسخة light" #: libraries/config/messages.inc.php:279 msgid "Maximum table tree depth" -msgstr "" +msgstr "أقصى عمق لشجرة الجدول" #: libraries/config/messages.inc.php:280 msgid "String that separates tables into different tree levels" @@ -3446,43 +3444,44 @@ msgstr "" #: libraries/config/messages.inc.php:281 msgid "Table tree separator" -msgstr "" +msgstr "فاصل شجرة الجدول" #: libraries/config/messages.inc.php:282 msgid "URL where logo in the navigation frame will point to" -msgstr "" +msgstr "إعمل رابط للمكان الذي يشير اليه الشعار" #: libraries/config/messages.inc.php:283 msgid "Logo link URL" -msgstr "" +msgstr "رابط الشعار" #: libraries/config/messages.inc.php:284 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:285 msgid "Logo link target" -msgstr "" +msgstr "هدف رابط الشعار" #: libraries/config/messages.inc.php:286 msgid "Highlight server under the mouse cursor" -msgstr "" +msgstr "توضيح الخادم تحت مؤشر الفأرة" #: libraries/config/messages.inc.php:287 msgid "Enable highlighting" -msgstr "" +msgstr "تفعيل التوضيح (highlighting)" #: libraries/config/messages.inc.php:288 msgid "Maximum number of recently used tables; set 0 to disable" -msgstr "" +msgstr "أكبر عدد للجداول المستعملة مؤخراً ; ضع 0 للتعطيل" #: libraries/config/messages.inc.php:289 -#, fuzzy #| msgid "Analyze table" msgid "Recently used tables" -msgstr "تحليل الجدول" +msgstr "الجداول المستعملة مؤخراً" #: libraries/config/messages.inc.php:290 msgid "Use less graphically intense tabs" @@ -3499,7 +3498,7 @@ msgstr "" #: libraries/config/messages.inc.php:293 msgid "Limit column characters" -msgstr "" +msgstr "حد أحرف العمود" #: libraries/config/messages.inc.php:294 msgid "" @@ -3510,17 +3509,17 @@ msgstr "" #: libraries/config/messages.inc.php:295 msgid "Delete all cookies on logout" -msgstr "" +msgstr "حذف كل الكوكيز عند الخروج" #: libraries/config/messages.inc.php:296 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" -msgstr "" +msgstr "تعريف ما إذا كان سوف يتذكر تسجيل الدخول الأخير من تحقق الكوكيز أم لا" #: libraries/config/messages.inc.php:297 msgid "Recall user name" -msgstr "" +msgstr "تذكر إسم المستخدم" #: libraries/config/messages.inc.php:298 msgid "" @@ -3536,15 +3535,15 @@ msgstr "" #: libraries/config/messages.inc.php:300 msgid "Define how long (in seconds) a login cookie is valid" -msgstr "" +msgstr "تحديد كم المدة التي يبقى فيها الكوكيز" #: libraries/config/messages.inc.php:301 msgid "Login cookie validity" -msgstr "" +msgstr "صلاحية دخول الكوكيز" #: libraries/config/messages.inc.php:302 msgid "Double size of textarea for LONGTEXT columns" -msgstr "" +msgstr "مضاعفة حجم مربع النص لأعمدة LONGTEXT" #: libraries/config/messages.inc.php:303 msgid "Bigger textarea for LONGTEXT" diff --git a/po/br.po b/po/br.po index dc306905fe..6d92660791 100644 --- a/po/br.po +++ b/po/br.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-02 22:10+0200\n" +"PO-Revision-Date: 2011-07-10 19:45+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" "Language: br\n" @@ -1292,16 +1292,14 @@ msgid "Insert Table" msgstr "Ensoc'hañ un daolenn" #: js/messages.php:113 -#, fuzzy #| msgid "Indexes" msgid "Hide indexes" -msgstr "Menegerioù" +msgstr "Kuzhat menegerioù" #: js/messages.php:114 -#, fuzzy #| msgid "Indexes" msgid "Show indexes" -msgstr "Menegerioù" +msgstr "Diskouez menegerioù" #: js/messages.php:117 msgid "Searching" @@ -2554,50 +2552,59 @@ msgid "" "inside a frame, and is a potential [strong]security hole[/strong] allowing " "cross-frame scripting attacks" msgstr "" +"Gweredekaat kement-mañ a aotre ur bajenn zo en un domani disheñvel da " +"c'hervel phpMyAdmin e diabarzh ur framm, ar pezh a ya d'ober un " +"[strong]toull surentez[/strong] posupl evit tagadennoù skript etre frammoù" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" -msgstr "" +msgstr "Aotren ar frammoù a-berzh tud all" #: libraries/config/messages.inc.php:23 msgid "Show "Drop database" link to normal users" msgstr "" +"Diskouez al liamm evit "Skarzhañ un diaz roadennoù" d'an " +"implijerien voutin" #: libraries/config/messages.inc.php:24 msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" +"Ger-tremen implijet evit enrinegañ toupinoù pa vez gwiriekaet dre " +"[kbd]cookie[/kbd]" #: libraries/config/messages.inc.php:25 msgid "Blowfish secret" -msgstr "" +msgstr "Kevrin Blow fish" #: libraries/config/messages.inc.php:26 msgid "Highlight selected rows" -msgstr "" +msgstr "Lakaat al linennoù dibabet da skediñ" #: libraries/config/messages.inc.php:27 msgid "Row marker" -msgstr "" +msgstr "Merker linennoù" #: libraries/config/messages.inc.php:28 msgid "Highlight row pointed by the mouse cursor" -msgstr "" +msgstr "Lakaat al linenn a vuk al logodenn daveti da usskediñ" #: libraries/config/messages.inc.php:29 msgid "Highlight pointer" -msgstr "" +msgstr "Lakaat ar reti da usskediñ" #: libraries/config/messages.inc.php:30 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " "import and export operations" msgstr "" +"Aotren ar gwaskañ [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] evit an " +"oberiadennoù enporzhiañ hag ezporzhiañ" #: libraries/config/messages.inc.php:31 msgid "Bzip2" -msgstr "" +msgstr "Bzip2" #: libraries/config/messages.inc.php:32 msgid "" @@ -2605,182 +2612,196 @@ msgid "" "columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/" "kbd] - allows newlines in columns" msgstr "" +"Spisaat peseurt doare kontrolloù kemmañ a zleer ober ganto evit ar bannoù " +"CHAR ha VARCHAR; [kbd]input[/kbd] - a dalvez da grennañ ar vent, " +"[kbd]textarea[/kbd] - a aotren lakaat linennoù nevez er bannoù" #: libraries/config/messages.inc.php:33 msgid "CHAR columns editing" -msgstr "" +msgstr "Kemmañ ar bannoù CHAR" #: libraries/config/messages.inc.php:34 msgid "Number of columns for CHAR/VARCHAR textareas" -msgstr "" +msgstr "Niver a vannoù evit an takadoù skrid CHAR/VARCHAR" #: libraries/config/messages.inc.php:35 msgid "CHAR textarea columns" -msgstr "" +msgstr "Bannoù evit an takadoù skrid CHAR" #: libraries/config/messages.inc.php:36 msgid "Number of rows for CHAR/VARCHAR textareas" -msgstr "" +msgstr "Niver a linennoù evit an takadoù skrid CHAR/VARCHAR" #: libraries/config/messages.inc.php:37 msgid "CHAR textarea rows" -msgstr "" +msgstr "Linennoù evit an takadoù skrid CHAR" #: libraries/config/messages.inc.php:38 msgid "Check config file permissions" -msgstr "" +msgstr "Gwiriañ aotreoù ar restr gefluniañ" #: libraries/config/messages.inc.php:39 msgid "" "Compress gzip/bzip2 exports on the fly without the need for much memory; if " "you encounter problems with created gzip/bzip2 files disable this feature" msgstr "" +"Gwaskañ a ra an ezporzhiadennoù gzip/bzip2 war ar prim hep sunañ nemeur a " +"vemor; Mar bez kudennoù gant ar restroù gzip/bzip2 krouet, diweredekait an " +"dibarzh." #: libraries/config/messages.inc.php:40 msgid "Compress on the fly" -msgstr "" +msgstr "Gwaskañ war ar prim" #: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25 #: setup/frames/index.inc.php:165 msgid "Configuration file" -msgstr "" +msgstr "Restr gefluniañ" #: libraries/config/messages.inc.php:42 msgid "" "Whether a warning ("Are your really sure...") should be displayed " "when you're about to lose data" msgstr "" +"Ur gemennadenn ("Ha sur oc'h...") a zlefe dont war wel pa vezer " +"war-nes koll roadennoù." #: libraries/config/messages.inc.php:43 msgid "Confirm DROP queries" -msgstr "" +msgstr "Kadarnaat ar rekedoù diverkañ DROP" #: libraries/config/messages.inc.php:44 msgid "Debug SQL" -msgstr "" +msgstr "Dizreinañ SQL" #: libraries/config/messages.inc.php:45 msgid "Default display direction" -msgstr "" +msgstr "Talvoud dre ziouer durc'hadur an diskwel" #: libraries/config/messages.inc.php:46 msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" +"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] pe un niver a verk an talvoud " +"brasañ a vo implijet ar mod a-serzh evitañ" #: libraries/config/messages.inc.php:47 msgid "Display direction for altering/creating columns" -msgstr "" +msgstr "Durc'hadur an diskwel evit kemmañ/krouiñ bannoù" #: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" -msgstr "" +msgstr "Ivinell diskouezet pa'z eer tre en un diaz roadennoù" #: libraries/config/messages.inc.php:49 msgid "Default database tab" -msgstr "" +msgstr "Ivinell dre ziouer evit un diaz roadennoù" #: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a server" -msgstr "" +msgstr "Ivinell diskouezet pa'z eer tre en ur servijer" #: libraries/config/messages.inc.php:51 msgid "Default server tab" -msgstr "" +msgstr "Ivinell dre ziouer evit ar servijer" #: libraries/config/messages.inc.php:52 msgid "Tab that is displayed when entering a table" -msgstr "" +msgstr "Ivinell diskouezet pa'z eer tre en un daolenn" #: libraries/config/messages.inc.php:53 msgid "Default table tab" -msgstr "" +msgstr "Ivinell dre ziouer evit an taolennoù" #: libraries/config/messages.inc.php:54 msgid "Show binary contents as HEX by default" -msgstr "" +msgstr "Diskouez an endalc'had binarel en HEX (eizhdekvedennoù) dre ziouer" #: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:637 msgid "Show binary contents as HEX" -msgstr "" +msgstr "Diskouez an endalc'had binarel en HEX (eizhdekvedennoù)" #: libraries/config/messages.inc.php:56 msgid "Show database listing as a list instead of a drop down" -msgstr "" +msgstr "Diskouez roll an diazoù roadennoù e-lec'h ul lañser desachañ" #: libraries/config/messages.inc.php:57 msgid "Display databases as a list" -msgstr "" +msgstr "Diskouez a ra an diazoù roadennoù e stumm ur roll" #: libraries/config/messages.inc.php:58 msgid "Show server listing as a list instead of a drop down" -msgstr "" +msgstr "Diskouez roll ar servijerioù e-lec'h ur roll desachañ" #: libraries/config/messages.inc.php:59 msgid "Display servers as a list" -msgstr "" +msgstr "Diskouez a ra ar servijerioù e stumm ur roll" #: libraries/config/messages.inc.php:60 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" +"Diweredekaat an oberiadennoù trezalc'h a-vras, evel gwellekaat pe kempenn " +"taolennoù diuzet un diaz roadennoù." #: libraries/config/messages.inc.php:61 msgid "Disable multi table maintenance" -msgstr "" +msgstr "Diweredekaat trezalc'h an taolennoù lies." #: libraries/config/messages.inc.php:62 msgid "Edit SQL queries in popup window" -msgstr "" +msgstr "Aozañ ar rekedoù SQL en ur prenestr difoupañ" #: libraries/config/messages.inc.php:63 msgid "Edit in window" -msgstr "" +msgstr "Aozañ en ur prenestr" #: libraries/config/messages.inc.php:64 msgid "Display errors" -msgstr "" +msgstr "Diskouez ar fazioù" #: libraries/config/messages.inc.php:65 msgid "Gather errors" -msgstr "" +msgstr "Dastum ar fazioù" #: libraries/config/messages.inc.php:66 msgid "Show icons for warning, error and information messages" -msgstr "" +msgstr "Diskouez an arlunioù evit ar c'hemennoù diwall, faziañ ha titouriñ" #: libraries/config/messages.inc.php:67 msgid "Iconic errors" -msgstr "" +msgstr "Arlunioù evit ar fazioù" #: libraries/config/messages.inc.php:68 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" +"Niver a eilennoù lakaet evit seveniñ ar skriptoù ([kbd]0[/kbd] a dalvez hep " +"bevenn)" #: libraries/config/messages.inc.php:69 msgid "Maximum execution time" -msgstr "" +msgstr "Pad seveniñ hirañ" #: libraries/config/messages.inc.php:70 prefs_manage.php:299 msgid "Save as file" -msgstr "" +msgstr "Enrollañ evel restr" #: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 msgid "Character set of the file" -msgstr "" +msgstr "Strobad arouezennoù ar restr" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 #: tbl_gis_visualization.php:210 tbl_printview.php:373 tbl_structure.php:870 msgid "Format" -msgstr "" +msgstr "Furmad" #: libraries/config/messages.inc.php:73 msgid "Compression" -msgstr "" +msgstr "Gwaskadur" #: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 #: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 @@ -2792,13 +2813,13 @@ msgstr "" #: libraries/export/odt.php:58 libraries/export/texytext.php:28 #: libraries/export/xls.php:25 libraries/export/xlsx.php:25 msgid "Put columns names in the first row" -msgstr "" +msgstr "Diskouez anvioù ar bannoù diouzhtu el linenn gentañ" #: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 #: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" -msgstr "" +msgstr "Bannoù gronnet gant" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 #: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 diff --git a/po/de.po b/po/de.po index 0448efe668..c75838e48d 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-03 20:12+0200\n" +"PO-Revision-Date: 2011-07-11 09:26+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" @@ -103,11 +103,11 @@ msgstr "Kein BLOB-Streaming-Server konfiguriert!" #: bs_disp_as_mime_type.php:35 msgid "Failed to fetch headers" -msgstr "Das Abrufen der Kopfzeilen ist fehlgeschlagen." +msgstr "Das Abrufen der Kopfzeilen ist fehlgeschlagen" #: bs_disp_as_mime_type.php:41 msgid "Failed to open remote URL" -msgstr "Die entfernte URL konnte nicht geöffnet werden." +msgstr "Die entfernte URL konnte nicht geöffnet werden" #: changelog.php:32 license.php:28 #, php-format @@ -311,7 +311,7 @@ msgstr "Nur Daten" #: db_operations.php:504 msgid "CREATE DATABASE before copying" -msgstr "Vor dem Kopieren CREATE DATABASE ausführen." +msgstr "Vor dem Kopieren CREATE DATABASE ausführen" #: db_operations.php:507 libraries/config/messages.inc.php:126 #: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 @@ -372,7 +372,7 @@ msgstr "Tabelle" #: tbl_printview.php:391 tbl_structure.php:395 tbl_structure.php:501 #: tbl_structure.php:910 msgid "Rows" -msgstr "Zeilen" +msgstr "Datensätze" #: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:193 msgid "Size" @@ -421,7 +421,7 @@ msgstr "Wechseln zu" #: db_qbe.php:186 msgid "visual builder" -msgstr "Visueller Builder" +msgstr "visueller Builder" #: db_qbe.php:222 libraries/db_structure.lib.php:90 #: libraries/display_tbl.lib.php:937 @@ -433,14 +433,14 @@ msgstr "Sortierung" #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:304 msgid "Ascending" -msgstr "aufsteigend" +msgstr "Aufsteigend" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:562 libraries/display_tbl.lib.php:895 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:305 msgid "Descending" -msgstr "absteigend" +msgstr "Absteigend" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:435 #: tbl_change.php:282 tbl_tracking.php:648 @@ -453,21 +453,21 @@ msgstr "Kriterium" #: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580 msgid "Ins" -msgstr "Einf." +msgstr "Einf" #: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577 msgid "And" -msgstr "und" +msgstr "Und" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582 msgid "Del" -msgstr "Entf." +msgstr "Entf" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 #: server_privileges.php:307 tbl_change.php:890 tbl_indexes.php:260 #: tbl_select.php:278 msgid "Or" -msgstr "oder" +msgstr "Oder" #: db_qbe.php:529 msgid "Modify" @@ -503,16 +503,16 @@ msgstr "SQL-Befehl ausführen" #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" -msgstr "Ihr SQL-Befehl wurde erfolgreich ausgeführt." +msgstr "Ihr SQL-Befehl wurde erfolgreich ausgeführt" #: db_routines.php:158 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -"%d Zeile betroffen aufgrund des letzten Befehls innerhalb der Prozedur" +"%d Datensatz betroffen aufgrund des letzten Befehls innerhalb der Prozedur" msgstr[1] "" -"%d Zeilen betroffen aufgrund des letzten Befehls innerhalb der Prozedur" +"%d Datensätze betroffen aufgrund des letzten Befehls innerhalb der Prozedur" #: db_routines.php:168 #, php-format @@ -522,7 +522,7 @@ msgstr "Ergebnisse der ausgeführten Routine %s" #: db_routines.php:188 libraries/import.lib.php:152 sql.php:685 #: tbl_change.php:183 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)." +msgstr "MySQL lieferte ein leeres Resultat zurück (d.h. null Datensätze)." #: db_routines.php:193 db_routines.php:298 db_routines.php:303 #: db_routines.php:327 @@ -609,7 +609,7 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:566 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:236 msgid "Access denied" -msgstr "Zugriff verweigert." +msgstr "Zugriff verweigert" #: db_search.php:42 db_search.php:284 msgid "at least one of the words" @@ -695,12 +695,12 @@ msgstr "In Spalte:" #: db_structure.php:60 msgid "No tables found in database" -msgstr "Diese Datenbank enthält keine Tabellen." +msgstr "Diese Datenbank enthält keine Tabellen" #: db_structure.php:270 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" -msgstr "Die Tabelle %s wurde geleert." +msgstr "Die Tabelle %s wurde geleert" #: db_structure.php:279 tbl_operations.php:705 #, php-format @@ -710,7 +710,7 @@ msgstr "Die Ansicht %s wurde gelöscht" #: db_structure.php:279 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" -msgstr "Die Tabelle %s wurde gelöscht." +msgstr "Die Tabelle %s wurde gelöscht" #: db_structure.php:286 tbl_create.php:269 msgid "Tracking is active." @@ -726,8 +726,8 @@ msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -"Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die " -"%sDokumentation%s." +"Dieser Ansicht hat mindestens diese Anzahl von Datensätzen. Bitte lesen Sie " +"die %sDokumentation%s." #: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:212 @@ -747,7 +747,9 @@ msgstr "Gesamt" #: db_structure.php:448 libraries/StorageEngine.class.php:313 #, php-format msgid "%s is the default storage engine on this MySQL server." -msgstr "Neue Tabellen werden standardmäßig im Format %s angelegt." +msgstr "" +"%s die Storage-Engine die standardmäßig auf diesem MySQL-Server eingestellt " +"ist." #: db_structure.php:476 db_structure.php:493 db_structure.php:494 #: libraries/display_tbl.lib.php:2339 libraries/display_tbl.lib.php:2344 @@ -771,7 +773,7 @@ msgstr "Auswahl entfernen" #: db_structure.php:488 msgid "Check tables having overhead" -msgstr "Tabellen m. Überhang ausw." +msgstr "Tabellen mit Überhang auswählen" #: db_structure.php:496 libraries/common.lib.php:2847 #: libraries/common.lib.php:2848 libraries/config/messages.inc.php:164 @@ -994,13 +996,14 @@ msgid "" msgstr "" "Es wurden keinen Daten zum importieren empfangen. Entweder wurde keine Datei " "ausgewählt, oder die Dateigröße hat die maximal erlaubte Größe der PHP " -"Konfiguration überschritten. Siehe FAQ 1.16." +"Konfiguration überschritten. Siehe " +"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." #: import.php:370 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -"Die Import-Plugins konnten nicht geladen werden. Bitte überprüfen Sie Ihre " -"phpMyAdmin-Installation." +"Die Import-Plugins konnten nicht geladen werden, bitte überprüfen Sie Ihre " +"phpMyAdmin-Installation!" #: import.php:395 msgid "The bookmark has been deleted." @@ -1060,7 +1063,7 @@ msgstr "Zum Abwählen anklicken" #: js/messages.php:27 libraries/import.lib.php:102 sql.php:221 msgid "\"DROP DATABASE\" statements are disabled." -msgstr "Die Anweisung \"DROP DATABASE\" wurde deaktiviert." +msgstr "\"DROP DATABASE\" - Anweisungen wurden deaktiviert." #: js/messages.php:30 libraries/mult_submits.inc.php:282 sql.php:319 msgid "Do you really want to " @@ -1080,7 +1083,7 @@ msgstr "Sie sind dabei die Daten einer kompletten Tabelle zu ZERSTÖREN!" #: js/messages.php:35 msgid "Deleting tracking data" -msgstr "Trackingdaten werden gelöscht." +msgstr "Trackingdaten werden gelöscht" #: js/messages.php:36 msgid "Dropping Primary Key/Index" @@ -1102,7 +1105,7 @@ msgstr "Wirklich alle BLOB-Referenzen für Datenbank %s deaktivieren?" #: js/messages.php:44 msgid "Missing value in the form!" -msgstr "Das Formular ist leer !" +msgstr "Das Formular ist leer!" #: js/messages.php:45 msgid "This is not a number!" @@ -1188,12 +1191,12 @@ msgstr "Weitere" #. l10n: Thousands separator #: js/messages.php:74 libraries/common.lib.php:1322 msgid "," -msgstr "." +msgstr "," #. l10n: Decimal separator #: js/messages.php:76 libraries/common.lib.php:1324 msgid "." -msgstr "," +msgstr "." #: js/messages.php:78 msgid "KiB sent since last refresh" @@ -1266,7 +1269,7 @@ msgstr "OK" #: js/messages.php:102 msgid "Renaming Databases" -msgstr "Datenbanken werden umbenannt." +msgstr "Datenbanken werden umbenannt" #: js/messages.php:103 msgid "Reload Database" @@ -1293,16 +1296,14 @@ msgid "Insert Table" msgstr "Tabelle einfügen" #: js/messages.php:113 -#, fuzzy #| msgid "Add index" msgid "Hide indexes" -msgstr "Index hinzufügen" +msgstr "Indexes verbergen" #: js/messages.php:114 -#, fuzzy #| msgid "Show grid" msgid "Show indexes" -msgstr "Gitterlinien anzeigen" +msgstr "Indexes anzeigen" #: js/messages.php:117 msgid "Searching" @@ -1369,7 +1370,7 @@ msgstr "Verstecken" #: js/messages.php:137 tbl_row_action.php:28 msgid "No rows selected" -msgstr "Es wurden keine Datensätze ausgewählt." +msgstr "Es wurden keine Datensätze ausgewählt" #: js/messages.php:138 libraries/display_tbl.lib.php:2347 querywindow.php:90 #: querywindow.php:94 querywindow.php:97 tbl_structure.php:152 @@ -1741,7 +1742,9 @@ msgstr "Unbekannter Fehler beim Dateihochladen." msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -msgstr "Fehler beim Verschieben der hochgeladenen Datei, siehe FAQ 1.11" +msgstr "" +"Fehler beim Verschieben der hochgeladenen Datei, siehe " +"[a@./Documentation.html#faq1_11@Documentation]FAQ 1.11[/a]" #: libraries/Index.class.php:417 tbl_relation.php:526 msgid "No index defined!" @@ -1773,12 +1776,12 @@ msgstr "Kommentar" #: libraries/Index.class.php:465 msgid "The primary key has been dropped" -msgstr "Der Primärschlüssel wurde gelöscht." +msgstr "Der Primärschlüssel wurde gelöscht" #: libraries/Index.class.php:469 #, php-format msgid "Index %s has been dropped" -msgstr "Index %s wurde entfernt." +msgstr "Index %s wurde entfernt" #: libraries/Index.class.php:567 #, php-format @@ -1806,22 +1809,22 @@ msgstr "Fehler" #, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." -msgstr[0] "%1$d Zeile betroffen." -msgstr[1] "%1$d Zeilen betroffen." +msgstr[0] "%1$d Datensatz betroffen." +msgstr[1] "%1$d Datensätze betroffen." #: libraries/Message.class.php:257 #, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d Zeile gelöscht." -msgstr[1] "%1$d Zeilen gelöscht." +msgstr[0] "%1$d Datensatz gelöscht." +msgstr[1] "%1$d Datensätze gelöscht." #: libraries/Message.class.php:273 #, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d Zeile eingefügt." -msgstr[1] "%1$d Zeilen eingefügt." +msgstr[0] "%1$d Datensatz eingefügt." +msgstr[1] "%1$d Datensätze eingefügt." #: libraries/RecentTable.class.php:107 msgid "Could not save recent table" @@ -1838,7 +1841,7 @@ msgstr "Es gibt keine aktuellen Tabellen" #: libraries/StorageEngine.class.php:180 msgid "" "There is no detailed status information available for this storage engine." -msgstr "Für dieses Tabellenformat sind keine Statusinformationen verfügbar" +msgstr "Für dieses Tabellenformat sind keine Statusinformationen verfügbar." #: libraries/StorageEngine.class.php:316 #, php-format @@ -1857,11 +1860,11 @@ msgstr "Dieser MySQL-Server unterstützt %s nicht." #: libraries/Table.class.php:1036 msgid "Invalid database" -msgstr "ungültige Datenbank" +msgstr "Ungültige Datenbank" #: libraries/Table.class.php:1050 tbl_get_field.php:25 msgid "Invalid table name" -msgstr "ungültiger Tabellenname" +msgstr "Ungültiger Tabellenname" #: libraries/Table.class.php:1065 #, php-format @@ -1871,7 +1874,7 @@ msgstr "Fehler beim umbenennen von Tabelle %1$s nach %2$s" #: libraries/Table.class.php:1148 #, php-format msgid "Table %s has been renamed to %s" -msgstr "Tabelle %s wurde umbenannt in %s." +msgstr "Tabelle %s wurde in %s umbenannt" #: libraries/Table.class.php:1275 msgid "Could not save table UI preferences" @@ -1880,8 +1883,7 @@ msgstr "Konnte die UI Einstellungen der Tabelle nicht speichern" #: libraries/Theme.class.php:143 #, php-format msgid "No valid image path for theme %s found!" -msgstr "" -"Keinen gültiges Pfad für Grafiken des Oberflächendesigns \"%s\" gefunden!" +msgstr "Keinen gültigen Pfad für Grafiken des Oberflächendesigns %s gefunden!" #: libraries/Theme.class.php:336 msgid "No preview available." @@ -1894,17 +1896,17 @@ msgstr "auswählen" #: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" -msgstr "Standard-Oberflächendesign \"%s\" nicht gefunden!" +msgstr "Standard-Oberflächendesign %s nicht gefunden!" #: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" -msgstr "Oberflächendesign \"%s\" nicht gefunden!" +msgstr "Oberflächendesign %s nicht gefunden!" #: libraries/Theme_Manager.class.php:210 #, php-format msgid "Theme path not found for theme %s!" -msgstr "Pfad für das Oberflächendesign \"%s\" nicht gefunden!" +msgstr "Pfad für das Oberflächendesign %s nicht gefunden!" #: libraries/Theme_Manager.class.php:286 themes.php:20 themes.php:40 msgid "Theme" @@ -1965,7 +1967,7 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:211 msgid "Server:" -msgstr "Server" +msgstr "Server:" #: libraries/auth/cookie.auth.lib.php:216 msgid "Username:" @@ -1996,13 +1998,13 @@ msgstr "" msgid "No activity within %s seconds; please log in again" msgstr "" "Da Sie seit mindestens %s Sekunden inaktiv waren, wurden Sie automatisch " -"abgemeldet. Bitte melden Sie sich erneut an." +"abgemeldet. Bitte melden Sie sich erneut an" #: libraries/auth/cookie.auth.lib.php:578 #: libraries/auth/cookie.auth.lib.php:580 #: libraries/auth/signon.auth.lib.php:244 msgid "Cannot log in to the MySQL server" -msgstr "Die Anmeldung am MySQL-Server ist fehlgeschlagen." +msgstr "Die Anmeldung am MySQL-Server ist fehlgeschlagen" #: libraries/auth/http.auth.lib.php:69 msgid "Wrong username/password. Access denied." @@ -2028,7 +2030,7 @@ msgstr "Kein gültiger Authentisierungsschlüssel angeschlossen" #: libraries/auth/swekey/swekey.auth.lib.php:202 msgid "Authenticating..." -msgstr "Authentifiziere ..." +msgstr "Authentifiziere..." #: libraries/blobstreaming.lib.php:236 msgid "PBMS error" @@ -2040,7 +2042,7 @@ msgstr "PBMS Verbindung fehlgeschlagen:" #: libraries/blobstreaming.lib.php:307 msgid "PBMS get BLOB info failed:" -msgstr "PBMS: Infos über BLOB nicht erhalten: " +msgstr "PBMS: Infos über BLOB nicht erhalten:" #: libraries/blobstreaming.lib.php:315 msgid "get BLOB Content-Type failed" @@ -2165,7 +2167,7 @@ msgstr "Ungültige Authentifikationsmethode:" #: libraries/common.inc.php:928 #, php-format msgid "You should upgrade to %s %s or later." -msgstr "Sie sollten auf %s %s oder neuer umsteigen." +msgstr "Sie sollten auf %s %s oder neuer aktualisieren." #: libraries/common.lib.php:131 #, php-format @@ -2254,7 +2256,7 @@ msgstr "Messen" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ #: libraries/common.lib.php:1282 msgid "B" -msgstr "Bytes" +msgstr "B" #: libraries/common.lib.php:1282 msgid "KiB" @@ -2316,8 +2318,7 @@ msgstr "Zur Datenbank "%s" springen." #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -"Die Funktion \"%s\" wird durch einen bekannten Fehler beeinträchtigt, siehe " -"%s" +"Die Funktion %s wird durch einen bekannten Fehler beeinträchtigt, siehe %s" #: libraries/common.lib.php:2646 libraries/common.lib.php:2653 #: libraries/common.lib.php:2840 libraries/config/setup.forms.php:296 @@ -2364,7 +2365,7 @@ msgstr "Wählen Sie vom Webserver-Uploadverzeichnis %s:" #: libraries/common.lib.php:2814 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" -msgstr "Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden." +msgstr "Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden" #: libraries/common.lib.php:2822 msgid "There are no files to upload" @@ -2554,11 +2555,11 @@ msgid "" "If enabled user can enter any MySQL server in login form for cookie auth" msgstr "" "Wenn aktiv, kann ein Benutzer beim Login die Adresse eines beliebigen " -"Servers für Cookie-Authentifizierung angeben." +"Servers für Cookie-Authentifizierung angeben" #: libraries/config/messages.inc.php:20 msgid "Allow login to any MySQL server" -msgstr "Login zu beliebigen MySQL-Server erlauben." +msgstr "Login zu beliebigen MySQL-Server erlauben" #: libraries/config/messages.inc.php:21 msgid "" @@ -2566,9 +2567,9 @@ msgid "" "inside a frame, and is a potential [strong]security hole[/strong] allowing " "cross-frame scripting attacks" msgstr "" -"Wenn diese Option aktiviert ist, kann eine Webseite einer fremden Domäne " -"phpMyAdmin in einem Frame aufrufen. Dies stellt eine potentielle [strong]" -"Sicherheitslücke[/strong] für Cross-Frame Scripting Attacken dar." +"Wenn diese Option aktiviert ist, kann eine Webseite einer fremden Domäne " +"phpMyAdmin in einem Frame aufrufen. Dies stellt eine potentielle " +"[strong]Sicherheitslücke[/strong] für Cross-Frame Scripting Attacken dar" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" @@ -2576,7 +2577,7 @@ msgstr "Erlaube Frame-Einbettung durch Dritte" #: libraries/config/messages.inc.php:23 msgid "Show "Drop database" link to normal users" -msgstr ""Drop Database"-Link normalen Benutzern anzeigen." +msgstr ""Drop Database"-Link normalen Benutzern anzeigen" #: libraries/config/messages.inc.php:24 msgid "" @@ -2592,7 +2593,7 @@ msgstr "Blowfish-Schlüssel" #: libraries/config/messages.inc.php:26 msgid "Highlight selected rows" -msgstr "Markierte Zeilen hervorheben" +msgstr "Markierte Datensätze hervorheben" #: libraries/config/messages.inc.php:27 msgid "Row marker" @@ -2606,13 +2607,14 @@ msgstr "Zeile unter Mauscursor hervorheben" msgid "Highlight pointer" msgstr "Cursor hervorheben" +# Maybe the wikipedia link should point to the german version of the article (http://de.wikipedia.org/wiki/Bzip2 ) #: libraries/config/messages.inc.php:30 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " "import and export operations" msgstr "" -"[a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a]-Kompression für Import und " -"Export aktivieren." +"[a@http://de.wikipedia.org/wiki/Bzip2]bzip2[/a]-Kompression für Import und " +"Export aktivieren" #: libraries/config/messages.inc.php:31 msgid "Bzip2" @@ -2657,9 +2659,9 @@ msgid "" "Compress gzip/bzip2 exports on the fly without the need for much memory; if " "you encounter problems with created gzip/bzip2 files disable this feature" msgstr "" -"gzip/bzip2 beim Exportieren verwenden ohne viel Speicher zu benötigen. " -"Sollten Probleme mit komprimierten Dateien auftreten, ist diese Option zu " -"deaktivieren." +"Komprimieren Sie Exporte mit gzip/bzip2 on the fly, um Platz zu sparen. " +"Sollten Sie auf Probleme mit den erstellten gzip/bip2 Dateien stoßen, " +"deaktivieren Sie dieses Feature" #: libraries/config/messages.inc.php:40 msgid "Compress on the fly" @@ -2675,8 +2677,8 @@ msgid "" "Whether a warning ("Are your really sure...") should be displayed " "when you're about to lose data" msgstr "" -"Warnung ("Sind Sie wirklich sicher …") anzeigen, wenn " -"Dateien verloren gehen könnten." +"Warnung ("Sind Sie wirklich sicher...") anzeigen, wenn Dateien " +"verloren gehen könnten" #: libraries/config/messages.inc.php:43 msgid "Confirm DROP queries" @@ -2695,8 +2697,8 @@ msgid "" "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " "maximum number for which vertical model is used" msgstr "" -"[kbd]horizontal[/kbd], [kbd]vertikal[/kbd] oder eine Zahl, die die maximale " -"Menge angibt, für die das vertikale Modell genutzt werden soll." +"[kbd]horizontal[/kbd], [kbd]vertikal[/kbd] oder eine Zahl, welche die " +"maximale Menge angibt, für die das vertikale Modell genutzt werden soll" #: libraries/config/messages.inc.php:47 msgid "Display direction for altering/creating columns" @@ -3008,7 +3010,7 @@ msgstr "Sortierreihenfolge für "FOREIGN KEY"-Dropdownfelder" #: libraries/config/messages.inc.php:152 msgid "A dropdown will be used if fewer items are present" msgstr "" -"Es wird ein Dropdownfeld verwendet, falls weniger Einträge vorhanden sind." +"Es wird ein Auswahl-Feld verwendet, falls weniger Einträge vorhanden sind" #: libraries/config/messages.inc.php:153 msgid "Foreign key limit" @@ -3221,8 +3223,8 @@ msgid "" "storage[/a] in documentation" msgstr "" "Konfigurieren Sie einen phpMyAdmin-Konfigurationsspeicher, um zusätzliche " -"Features zu erhalten, siehe [a@../Documentation.html#linked-tables]" -"phpMyAdmin-Konfigurationsspeicher[/a] in der Dokumentation" +"Features zu erhalten, siehe [a@Documentation.html#linked-tables]phpMyAdmin-" +"Konfigurationsspeicher[/a] in der Dokumentation" #: libraries/config/messages.inc.php:206 msgid "Changes tracking" @@ -3327,7 +3329,7 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -"[a@http://en.wikipedia.org/wiki/Gzip]GZip[/a]-Kompression für Import- und " +"[a@http://de.wikipedia.org/wiki/Gzip]GZip[/a]-Kompression für Import- und " "Exportoperationen aktiviren" #: libraries/config/messages.inc.php:233 @@ -3397,7 +3399,7 @@ msgstr "Spaltennamen in der ersten Zeile" #: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 msgid "Do not import empty rows" -msgstr "Keine leeren Zeilen importieren" +msgstr "Keine leeren Datensätze importieren" #: libraries/config/messages.inc.php:256 msgid "Import currencies ($5.00 to 5.00)" @@ -3425,11 +3427,11 @@ msgstr "Anfangswert für Schieberegler" #: libraries/config/messages.inc.php:265 msgid "How many rows can be inserted at one time" -msgstr "Anzahl der auf einmal einfügbaren Zeilen" +msgstr "Anzahl der auf einmal einfügbaren Datensätze" #: libraries/config/messages.inc.php:266 msgid "Number of inserted rows" -msgstr "Anzahl der eingefügten Zeilen." +msgstr "Anzahl der eingefügten Datensätze" #: libraries/config/messages.inc.php:267 msgid "Target for quick access icon" @@ -3645,13 +3647,13 @@ msgid "" "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -"Anzahl der angezeigten Zeilen in einem Abfrage-Ergebnis. Wenn mehr Zeilen " -"vorhanden sind, werden "Previous" and "Next" Links " -"angezeigt." +"Anzahl der angezeigten Datensätze in einem Abfrage-Ergebnis. Wenn mehr " +"Datensätze vorhanden sind, werden "Previous" and "Next" " +"Links angezeigt." #: libraries/config/messages.inc.php:311 msgid "Maximum number of rows to display" -msgstr "Maximale Anzahl der angezeigten Zeilen" +msgstr "Maximale Anzahl der angezeigten Datensätze" #: libraries/config/messages.inc.php:313 msgid "Maximum number of tables displayed in table list" @@ -3678,8 +3680,8 @@ msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -"Anzahl der Bytes, welche ein Script zur Ausführung benötigen darf, z.B. [kbd]" -"32M[/kbd] ([kbd]0[/kbd] für unbegrenzt)" +"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:318 msgid "Memory limit" @@ -3862,7 +3864,7 @@ msgstr "Host-Autorisierungsreihenfolge" #: libraries/config/messages.inc.php:361 msgid "Leave blank for defaults" -msgstr "Leer lassen, um Voreinstellungen zu verwenden." +msgstr "Leer lassen, um die Voreinstellungen zu verwenden" #: libraries/config/messages.inc.php:362 msgid "Host authorization rules" @@ -4023,7 +4025,7 @@ msgstr "" #: libraries/config/messages.inc.php:393 msgid "SQL query history table" -msgstr "History Table" +msgstr "SQL Abfragehistorien Tabelle" #: libraries/config/messages.inc.php:394 msgid "Hostname where MySQL server is running" @@ -4088,9 +4090,9 @@ msgid "" "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -"Datenbank für Relationen, Bookmarks, and PDF Features. Siehe [a@http://wiki." -"phpmyadmin.net/pma/pmadb]pmadb[/a] für komplette Information. Leer lassen " -"für keien Unterstützung. Vorschlag: [kbd]phpmyadmin[/kbd]" +"Datenbank für Relationen, Bookmarks, and PDF Features. Siehe " +"[a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] für komplette Information. " +"Leer lassen für keine Unterstützung. Vorschlag: [kbd]phpmyadmin[/kbd]" #: libraries/config/messages.inc.php:406 msgid "Database name" @@ -4109,8 +4111,8 @@ msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -"Leer lassen, um die kürzlich verwendeten Tabellen nicht in der Datenbank zu " -"speichern, Vorschlag: [kbd]pma_recent[/kbd]" +"Leer lassen, um die kürzlich verwendeten Tabellen nicht in der Datenbank " +"\"dauerhaft\" zu speichern, Vorschlag: [kbd]pma_recent[/kbd]" #: libraries/config/messages.inc.php:410 msgid "Recently used table" @@ -4121,7 +4123,7 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -"Leer lassen für keine [a@http://wiki.phpmyadmin.net/pma/relation]relation-" +"Leer lassenfür keine [a@http://wiki.phpmyadmin.net/pma/relation]relation-" "links[/a] Unterstützung, Vorschlag: [kbd]pma_relation[/kbd]" #: libraries/config/messages.inc.php:412 @@ -4178,7 +4180,7 @@ msgstr "" #: libraries/config/messages.inc.php:423 msgid "PDF schema: table coordinates" -msgstr "Table Coords Table" +msgstr "PDF Schema: Tabellen Koordinatien" #: libraries/config/messages.inc.php:424 msgid "" @@ -4197,8 +4199,8 @@ msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -"Leer lassen, um die Oberflächeneinstellungen nicht in der Datenbank zu " -"speichern, Vorschlag: [kbd]pma_table_uiprefs[/kbd]" +"Leer lassen, um die Oberflächeneinstellungen nicht \"dauerhaft\" in der " +"Datenbank zu speichern, Vorschlag: [kbd]pma_table_uiprefs[/kbd]" #: libraries/config/messages.inc.php:427 msgid "UI preferences table" @@ -4210,7 +4212,7 @@ msgid "" "the log when creating a database." msgstr "" "DROP DATABASE IF EXISTS statement beim Erstellen einer neuen Datenbank als " -"erste Zeile loggen" +"erste Zeile loggen." #: libraries/config/messages.inc.php:429 msgid "Add DROP DATABASE" @@ -4222,7 +4224,7 @@ msgid "" "log when creating a table." msgstr "" "DROP TABLE IF EXISTS statement beim Erstellen einer neuen Ansicht als erste " -"Zeile loggen" +"Zeile loggen." #: libraries/config/messages.inc.php:431 msgid "Add DROP TABLE" @@ -4234,7 +4236,7 @@ msgid "" "log when creating a view." msgstr "" "DROP VIEW IF EXISTS statement beim Erstellen einer neuen Ansicht als erste " -"Zeile loggen" +"Zeile loggen." #: libraries/config/messages.inc.php:433 msgid "Add DROP VIEW" @@ -4243,8 +4245,8 @@ msgstr "DROP VIEW hinzufügen" #: libraries/config/messages.inc.php:434 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" +"Legt die Liste der Statements fest, welche die automatische " +"Versionserstellung für neue Versionen verwenden." #: libraries/config/messages.inc.php:435 msgid "Statements to track" @@ -4268,7 +4270,7 @@ msgid "" "automatically." msgstr "" "Automatische Versionserstellung für Tabellen und Ansichten durch den " -"Verlaufs-mechanismus" +"Verlaufs-Mechanismus." #: libraries/config/messages.inc.php:439 msgid "Automatically create versions" @@ -4317,12 +4319,12 @@ msgstr "Serverbezeichnung" #: libraries/config/messages.inc.php:448 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -"Ob dem Benutzer eine Schaltfläche „Alle (Zeilen) anzeigen” " +"Ob dem Benutzer eine Schaltfläche „Alle (Datensätze) anzeigen” " "angezeigt werden soll" #: libraries/config/messages.inc.php:449 msgid "Allow to display all the rows" -msgstr "Erlaube alle Zeilen anzuzeigen" +msgstr "Erlaube es alle Datensätze anzuzeigen" #: libraries/config/messages.inc.php:450 msgid "" @@ -4333,7 +4335,7 @@ msgstr "" "Bitte beachten, dass das Einschalten bei [kbd]config[/kbd] authentication " "mode keine Wirkung hat, da das Passwort in der Konfigurationsdatei steht; " "dieses beschränkt nicht die Möglichkeit der direkten Ausführung des selben " -"Befehls." +"Befehls" #: libraries/config/messages.inc.php:451 msgid "Show password change form" @@ -4348,12 +4350,13 @@ msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" +"Legt fest, ob die Typen-Anzeige-Richtungs-Option gezeigt wird, beim " +"durchsuchen einer Tabelle" #: libraries/config/messages.inc.php:454 -#, fuzzy #| msgid "Default display direction" msgid "Show display direction" -msgstr "Stamdardanzeigerichtung" +msgstr "Zeige die Anzeige-Richtung" #: libraries/config/messages.inc.php:455 msgid "" @@ -4430,9 +4433,9 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" "Wird dies auf [kbd]nested[/kbd] gesetzt, so wird der Alias des " -"Tabellennamens nur benutzt, um die Tabellen gemäß der $cfg" -"['LeftFrameTableSeparator'] Direktive zu teilen bzw. zu verschachteln. Nur " -"der Ordner erhält den Alias, der Tabellename bleibt unverändert." +"Tabellennamens nur benutzt, um die Tabellen gemäß der " +"$cfg['LeftFrameTableSeparator'] Direktive zu teilen bzw. zu verschachteln. " +"Nur der Ordner erhält den Alias, der Tabellename bleibt unverändert" #: libraries/config/messages.inc.php:469 msgid "Display table comment instead of its name" @@ -4518,7 +4521,7 @@ msgid "" "query textareas (*2) and for query window (*1.25)" msgstr "" "Textfeldgröße (in Spalten) im Bearbeitungsmodus. Dieser Wert wird vergrößert " -"für Textfelder bei SQL-Abfragen (x 2) und Abfragefenster (x 1,25)" +"für Textfelder bei SQL-Abfragen (*2) und Abfragefenster (*1,25)" #: libraries/config/messages.inc.php:489 msgid "Textarea columns" @@ -4530,7 +4533,7 @@ msgid "" "query textareas (*2) and for query window (*1.25)" msgstr "" "Textfeldgröße (in Zeilen) im Bearbeitungsmodus. Dieser Wert wird vergrößert " -"für Textfelder bei SQL-Abfragen (x 2) und Abfragefenster (x 1,25)" +"für Textfelder bei SQL-Abfragen (*2) und Abfragefenster (*1,25)" #: libraries/config/messages.inc.php:491 msgid "Textarea rows" @@ -4565,8 +4568,8 @@ msgid "" msgstr "" "Proxies als [kbd]IP: trusted HTTP header[/kbd] eingeben. Das folgende " "Beispiel legt fest, das phpMyAdmin einem HTTP_X_FORWARDED_FOR (X-Forwarded-" -"For) Header, der von dem proxy 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR" -"[/kbd] kommt, vertrauen soll." +"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:501 msgid "List of trusted proxies for IP allow/deny" @@ -4606,7 +4609,7 @@ msgid "" "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -"Zeige die beeinflussten Zeilen jedes Statements von Multi-Statement-" +"Zeige die beeinflussten Datensätze jedes Statements von Multi-Statement-" "Abfragen. In libraries/import.lib.php sind die Voreinstellungen, wieviele " "Abfragen ein Statement enthalten darf." @@ -4630,13 +4633,14 @@ msgstr "Aktiviere die Prüfung auf Aktualisierungen auf der Hauptseite" msgid "Version check" msgstr "Versionsüberprüfung" +# Maybe wikipedia links should point to $lang.wikipedia.org, eg http://de.wikipedia.org/wiki/ZIP-Dateiformat #: libraries/config/messages.inc.php:513 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -"[a@http://en.wikipedia.org/wiki/Gzip]GZip[/a]-Kompression für Import- und " -"Exportoperationen aktiviren" +"[a@http://de.wikipedia.org/wiki/ZIP-Dateiformat]ZIP[/a]-Kompression für " +"Import- und Exportoperationen aktivieren" #: libraries/config/messages.inc.php:514 msgid "ZIP" @@ -4844,7 +4848,7 @@ msgstr "Trigger" #: libraries/db_routines.lib.php:630 msgid "Details" -msgstr "Details ..." +msgstr "Details" #: libraries/db_routines.lib.php:633 msgid "Routine name" @@ -4964,7 +4968,7 @@ msgstr "" #: libraries/db_routines.lib.php:1028 msgid "You must provide a routine definition." -msgstr "Sie müssen die Definition der Routine angeben" +msgstr "Sie müssen die Definition der Routine angeben." #: libraries/db_routines.lib.php:1151 msgid "There are no routines to display." @@ -4995,7 +4999,7 @@ msgstr "" #: libraries/dbi/mysql.dbi.lib.php:324 libraries/dbi/mysql.dbi.lib.php:326 #: libraries/dbi/mysqli.dbi.lib.php:351 msgid "The server is not responding" -msgstr "Der Server antwortet nicht." +msgstr "Der Server antwortet nicht" #: libraries/dbi/mysql.dbi.lib.php:324 libraries/dbi/mysqli.dbi.lib.php:351 msgid "(or the local MySQL server's socket is not correctly configured)" @@ -5005,7 +5009,7 @@ msgstr "" #: libraries/dbi/mysql.dbi.lib.php:333 msgid "Details..." -msgstr "Details ..." +msgstr "Details..." #: libraries/display_change_password.lib.php:29 main.php:94 #: user_password.php:105 user_password.php:123 @@ -5100,7 +5104,7 @@ msgstr "Datensätze:" #: libraries/display_export.lib.php:150 msgid "Dump some row(s)" -msgstr "Einige Datensätze exportieren:" +msgstr "Einige Datensätze exportieren" #: libraries/display_export.lib.php:152 msgid "Number of rows:" @@ -5294,7 +5298,7 @@ msgstr "" #: libraries/display_import.lib.php:228 msgid "Number of rows to skip, starting from the first row:" -msgstr "Anzahl der am Anfang zu überspringenden Zeilen:" +msgstr "Anzahl der am Anfang zu überspringenden Datensätze:" #: libraries/display_import.lib.php:250 msgid "Format-Specific Options:" @@ -5311,7 +5315,7 @@ msgstr "Spalten-Anordnung wiederherstellen" #: libraries/display_tbl.lib.php:417 msgid "Drag to reorder" -msgstr "Zur Umordnung ziehen." +msgstr "Zur Umordnung ziehen" #: libraries/display_tbl.lib.php:418 msgid "Click to sort" @@ -5324,6 +5328,8 @@ msgstr "Klicken zum aus- bzw. abwählen" #: libraries/display_tbl.lib.php:420 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" +"Den Pfeil des Aufklappsmenüs anklicken
um die Sichtbarkeit der Spalte " +"umzustellen" #: libraries/display_tbl.lib.php:431 #, php-format @@ -5331,22 +5337,19 @@ msgid "%d is not valid row number." msgstr "%d ist keine gültige Zeilennummer." #: libraries/display_tbl.lib.php:436 -#, fuzzy #| msgid "Textarea rows" msgid "Start row" -msgstr "Textfeldzeilen" +msgstr "Anfangs-Datensatz" #: libraries/display_tbl.lib.php:438 -#, fuzzy #| msgid "Number of rows:" msgid "Number of rows" -msgstr "Anzahl der Zeilen:" +msgstr "Anzahl der Datensätze" #: libraries/display_tbl.lib.php:443 -#, fuzzy #| msgid "More" msgid "Mode" -msgstr "Mehr" +msgstr "Art und Weise" #: libraries/display_tbl.lib.php:445 msgid "horizontal" @@ -5363,7 +5366,7 @@ msgstr "nebeneinander" #: libraries/display_tbl.lib.php:452 #, php-format msgid "Headers every %s rows" -msgstr "" +msgstr "Kopfzeilen alle %s Datensätze" #: libraries/display_tbl.lib.php:546 msgid "Sort by key" @@ -5416,7 +5419,7 @@ msgstr "Kopieren" #: libraries/display_tbl.lib.php:1318 libraries/display_tbl.lib.php:1330 msgid "The row has been deleted" -msgstr "Der Datensatz wurde gelöscht." +msgstr "Der Datensatz wurde gelöscht" #: libraries/display_tbl.lib.php:1357 libraries/display_tbl.lib.php:2314 #: server_status.php:831 @@ -5429,7 +5432,7 @@ msgstr "in der Abfrage" #: libraries/display_tbl.lib.php:2206 msgid "Showing rows" -msgstr "Zeige Datensätze " +msgstr "Zeige Datensätze" #: libraries/display_tbl.lib.php:2216 msgid "total" @@ -5439,7 +5442,7 @@ msgstr "insgesamt" #: libraries/display_tbl.lib.php:2224 sql.php:689 #, php-format msgid "Query took %01.4f sec" -msgstr "die Abfrage dauerte %01.4f Sekunden." +msgstr "Die Abfrage dauerte %01.4f Sekunden" #: libraries/display_tbl.lib.php:2418 msgid "Query results operations" @@ -5463,7 +5466,7 @@ msgstr "Erzeuge View" #: libraries/display_tbl.lib.php:2629 msgid "Link not found" -msgstr "Der Verweis wurde nicht gefunden." +msgstr "Der Verweis wurde nicht gefunden" #: libraries/display_triggers.inc.php:35 #, php-format @@ -5851,8 +5854,8 @@ msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -"Die Größe des globalen Transaktionslogpuffers (es werden zwei Puffer dieser " -"Größe angelegt. Die Voreinstellung ist 1 MB." +"Die Größe des globalen Transaktionslogpuffers (es werden 2 Puffer dieser " +"Größe angelegt). Die Voreinstellung ist 1 MB." #: libraries/engines/pbxt.lib.php:47 msgid "Checkpoint frequency" @@ -5915,7 +5918,7 @@ msgstr "Dateiwachstumsgröße" #: libraries/engines/pbxt.lib.php:68 msgid "The grow size of the handle data (.xtd) files." -msgstr "Die Wachstumsgröße der Handle-Dateien (.xtd)" +msgstr "Die Wachstumsgröße der Handle-Dateien (.xtd)." #: libraries/engines/pbxt.lib.php:72 msgid "Row file grow size" @@ -6096,7 +6099,7 @@ msgstr "" msgid "Additional custom header comment (\\n splits lines):" msgstr "" "Individuelle Kommentare für den Kopfbereich (\n" -" erzeugt einen Zeilenumbruch):" +" erzeugt einen Zeilenumbruch):" #: libraries/export/sql.php:48 msgid "" @@ -6167,9 +6170,9 @@ msgid "" "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -"mehrere Zeilen pro INSERT Schlüsselwort einfügen
  " -"    Beispiel: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " -"(7,8,9)" +"mehrere Datensätze pro INSERT Schlüsselwort einfügen
" +"      Beispiel: INSERT INTO tbl_name VALUES (1,2,3), " +"(4,5,6), (7,8,9)" #: libraries/export/sql.php:259 msgid "" @@ -6194,7 +6197,7 @@ msgid "" "0x616263)" msgstr "" "Binäre Spalten in hexadezimaler Schreibweise exportieren (zum Beispiel " -"wird aus „abc” 0x616263)" +"wird aus \"abc\" 0x616263)" #: libraries/export/sql.php:282 msgid "" @@ -6335,7 +6338,7 @@ msgstr "Spaltennamen: " #: libraries/import/csv.php:80 libraries/import/csv.php:85 #, php-format msgid "Invalid parameter for CSV import: %s" -msgstr "Ungültiger Parameter für CSV-Import: \"%s\"" +msgstr "Ungültiger Parameter für CSV-Import: %s" #: libraries/import/csv.php:132 #, php-format @@ -6782,7 +6785,7 @@ msgid "" "this list." msgstr "" "Nur Slaves, die mit der Option --report-host=host_name gestartet wurden, " -"sind in dieser Liste sichtbar" +"sind in dieser Liste sichtbar." #: libraries/replication_gui.lib.php:241 server_replication.php:192 msgid "Add slave replication user" @@ -6834,7 +6837,7 @@ msgstr "Passwort generieren" #: libraries/schema/Visio_Relation_Schema.class.php:210 #, php-format msgid "The %s table doesn't exist!" -msgstr "Die Tabelle \"%s\" existiert nicht!" +msgstr "Die Tabelle %s existiert nicht!" #: libraries/schema/Dia_Relation_Schema.class.php:248 #: libraries/schema/Eps_Relation_Schema.class.php:436 @@ -6851,7 +6854,7 @@ msgstr "Bitte konfigurieren Sie die Koordinaten für die Tabelle %s" #: libraries/schema/Visio_Relation_Schema.class.php:497 #, php-format msgid "Schema of the %s database - Page %s" -msgstr "Schema der Datenbank \"%s\" - Seite %s" +msgstr "Schema der Datenbank %s - Seite %s" #: libraries/schema/Export_Relation_Schema.class.php:170 msgid "This page does not contain any tables!" @@ -6905,7 +6908,7 @@ msgstr "FOREIGN KEY" #: libraries/schema/User_Schema.class.php:144 msgid "Please choose a page to edit" -msgstr "Bitte wählen Sie die zu bearbeitende Seite." +msgstr "Bitte wählen Sie die zu bearbeitende Seite" #: libraries/schema/User_Schema.class.php:149 msgid "Select page" @@ -6933,11 +6936,11 @@ msgstr "mehrfarbig" #: libraries/schema/User_Schema.class.php:377 msgid "Show dimension of tables" -msgstr "Tabellendimensionen anzeigen." +msgstr "Tabellendimensionen anzeigen" #: libraries/schema/User_Schema.class.php:380 msgid "Display all tables with the same width" -msgstr "Sollen alle Tabellen mit der gleichen Breite angezeigt werden?" +msgstr "Alle Tabellen mit der selben Breite anzeigen" #: libraries/schema/User_Schema.class.php:385 msgid "Only show keys" @@ -6980,7 +6983,7 @@ msgstr "ltr" #: libraries/select_lang.lib.php:486 #, php-format msgid "Unknown language: %1$s." -msgstr "Unbekannte Sprache: \"%1$s\"." +msgstr "Unbekannte Sprache: %1$s." #: libraries/select_server.lib.php:32 libraries/select_server.lib.php:38 msgid "Current Server" @@ -7077,7 +7080,7 @@ msgstr "Begrenzer" #: libraries/sql_query_form.lib.php:346 msgid " Show this query here again " -msgstr "Diese Abfrage hier wieder anzeigen" +msgstr " Diese Abfrage hier wieder anzeigen " #: libraries/sql_query_form.lib.php:403 msgid "View only" @@ -7097,7 +7100,7 @@ msgid "" "below, if there is any, may also help you in diagnosing the problem" msgstr "" "Es scheint einen Fehler in Ihrer MySQL-Abfrage zu geben. Die MySQL-" -"Fehlerausgabe, falls vorhanden, kann Ihnen auch bei der Fehleranalyse helfen." +"Fehlerausgabe, falls vorhanden, kann Ihnen auch bei der Fehleranalyse helfen" #: libraries/sqlparser.lib.php:167 msgid "" @@ -7122,7 +7125,7 @@ msgstr "" "versagt, wo die Kommandozeile erfolgreich ist, so reduzieren Sie bitte Ihre " "Abfrage auf den Befehl, welcher die Probleme verursacht, und senden Sie uns " "einen Fehlerbericht mit den Datenausschnitt, den Sie weiter unten auf dieser " -"Seite finden.:" +"Seite finden:" #: libraries/sqlparser.lib.php:169 msgid "BEGIN CUT" @@ -7182,10 +7185,10 @@ msgid "" "a single quote (\"'\") amongst those values, precede it with a backslash " "(for example '\\\\xyz' or 'a\\'b')." msgstr "" -"Wenn das Feld vom Typ 'ENUM' oder 'SET' ist, benutzen Sie bitte das Format: " -"'a','b','c',...
Wann immer Sie ein Backslash (\"\\\") oder ein " -"einfaches Anführungszeichen (\"'\") verwenden, setzen Sie bitte ein " -"Backslash vor das Zeichen. (z. B.: '\\\\xyz' oder 'a\\'b')." +"Wenn das Feld vom Typ \"ENUM\" oder \"SET\" ist, benutzen Sie bitte das Format: " +"'a','b','c',...
Wann immer Sie ein Backslash (\"\\\") oder ein einfaches " +"Anführungszeichen (\"'\") verwenden, setzen Sie bitte ein Backslash vor das " +"Zeichen. (z. B.: '\\\\xyz' oder 'a\\'b')." #: libraries/tbl_properties.inc.php:109 msgid "" @@ -7193,7 +7196,7 @@ msgid "" "escaping or quotes, using this format: a" msgstr "" "Bitte geben Sie jeweils nur einen Standardwert ohne Escape- oder " -"Anführungszeichen an." +"Anführungszeichen an, und verwenden Sie dieses Format: a" #: libraries/tbl_properties.inc.php:119 libraries/tbl_properties.inc.php:512 #: tbl_printview.php:323 tbl_structure.php:156 tbl_structure.php:161 @@ -7222,9 +7225,9 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" "Bitte die Werte für die Umwandlungsoptionen in folgendem Format angeben: " -"'a', 100, b,'c',... Wann immer Sie ein Backslash (\"\\\") oder ein einfaches " -"Anführungszeichen (\"'\") verwenden, setzen Sie bitte ein Backslash vor das " -"Zeichen. (z. B.: '\\\\xyz' oder 'a\\'b')." +"'a', 100, b,'c',...
Wann immer Sie ein Backslash (\"\\\") oder ein " +"einfaches Anführungszeichen (\"'\") verwenden, setzen Sie bitte ein Backslash " +"vor das Zeichen. (z. B.: '\\\\xyz' oder 'a\\'b')." #: libraries/tbl_properties.inc.php:355 msgid "ENUM or SET data too long?" @@ -7260,8 +7263,7 @@ msgid "" "author what %s does." msgstr "" "Für diese Umwandlung ist keine Beschreibung verfügbar.
Für weitere " -"Informationen wenden Sie sich bitte an den Autoren der Funktion "" -"%s"." +"Informationen wenden Sie sich bitte an den Autoren der Funktion %s." #: libraries/tbl_properties.inc.php:609 tbl_structure.php:678 #, php-format @@ -7314,7 +7316,7 @@ msgid "" "in pixels. The original aspect ratio is preserved." msgstr "" "Ein klickbares Vorschaubild anzeigen. Optionen: Breite, Höhe in Pixeln " -"(berücksichtigt Seitenverhältnis)" +"(berücksichtigt das ursprüngliche Seitenverhältnis)." #: libraries/transformations/image_jpeg__link.inc.php:9 msgid "Displays a link to download this image." @@ -7372,9 +7374,9 @@ msgid "" "Displays the contents of the column as-is, without running it through " "htmlspecialchars(). That is, the column is assumed to contain valid HTML." msgstr "" -"Behält Ursprungsformatierung der Spalte bei. Kein Escaping oder " -"Umlautwandlung wird durchgeführt. Das heißt, es wird angenommen, dass die " -"Spalte gültiges HTML enthält." +"Stellt den Inhalt der Spalten in der ursprünglichen Formatierung dar, ohne " +"dass diese htmlspecialchars() durchläuft. Das heißt, es wird angenommen, " +"dass die Spalte gültiges HTML enthält." #: libraries/transformations/text_plain__imagelink.inc.php:9 msgid "" @@ -7383,8 +7385,8 @@ msgid "" "third options are the width and the height in pixels." msgstr "" "Zeigt ein Bild und einen Link; die Spalte enthält den Dateinamen. Die erste " -"Option ist ein URL-Präfix, wie \"http://www.domain.com\". Zweite Option ist " -"die Breite des Bildes, die dritte Option die Höhe in Pixeln." +"Option ist ein URL-Präfix, wie \"http://www.example.com/\". Die zweite Option " +"ist die Breite des Bildes und die dritte Option die Höhe in Pixeln." #: libraries/transformations/text_plain__link.inc.php:9 msgid "" @@ -7393,7 +7395,7 @@ msgid "" "the link." msgstr "" "Zeigt einen Link an; die Spalte enthlt den Dateinamen. Die erste Option ist " -"ein Präfix, wie \"http://www.domain.com\". Zweite Option ist der " +"ein Präfix, wie \"http://www.example.com/\". Die zweite Option ist der " "darzustellende Titel des Links." #: libraries/transformations/text_plain__longToIpv4.inc.php:9 @@ -7402,7 +7404,7 @@ msgid "" "standard dotted format." msgstr "" "Konvertiert eine (IPv4) Internet Netzwerk-Adresse in eine Zeichenkette im " -"\"dotted\" Format." +"Punkt-Format." #: libraries/transformations/text_plain__sql.inc.php:9 msgid "Formats text as SQL query with syntax highlighting." @@ -7421,8 +7423,8 @@ msgstr "" "Option gibt an wieviel Zeichen ab dort dargestellt werden sollen. Falls " "diese Option leer ist, wird der gesamte verbleibende Text dargestellt. Die " "dritte Option kann einen Text enthalten, der bei partieller Ausgabe des " -"Textes angehängt wird, um eine Abschneidung kenntlich zu machen " -"(Standard: ...)." +"Textes angehängt wird, um eine Abschneidung kenntlich zu machen (Standard: " +"\"...\")." #: libraries/user_preferences.inc.php:32 msgid "Manage your settings" @@ -7513,7 +7515,7 @@ msgstr "Wiki" #: main.php:216 msgid "Official Homepage" -msgstr "Offizielle Homepage " +msgstr "Offizielle Homepage" #: main.php:217 msgid "Contribute" @@ -7534,11 +7536,11 @@ msgid "" "running with this default, is open to intrusion, and you really should fix " "this security hole by setting a password for user 'root'." msgstr "" -"Ihre Konfigurationsdatei enthält Einstellungen (Benutzer "root" " -"ohne Passwort), welche denen des MySQL-Standardbenutzers entsprechen. Wird " -"Ihr MySQL-Server mit diesen Einstellungen betrieben, so können Unbefugte " -"leicht von außen auf ihn zugreifen. Sie sollten diese Sicherheitslücke " -"unbedingt schließen!" +"Ihre Konfigurationsdatei enthält Einstellungen (Benutzer root ohne " +"Passwort), welche denen des MySQL-Standardbenutzers entsprechen. Wird Ihr " +"MySQL-Server mit diesen Einstellungen betrieben, so können Unbefugte leicht " +"von außen auf ihn zugreifen. Sie sollten diese Sicherheitslücke unbedingt " +"durch das Setze eines Passworts für den Benutzer 'root' schließen." #: main.php:251 msgid "" @@ -7546,9 +7548,9 @@ msgid "" "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -"Sie haben die Option \"mbstring.func_overload\" in Ihrer PHP-Konfiguration " +"Sie haben die Option mbstring.func_overload in Ihrer PHP-Konfiguration " "aktiviert. Diese ist nicht kompatibel zu phpMyAdmin, weshalb es zu Problemen " -"und Datenverlust kommen kann." +"und Datenverlust kommen kann!" #: main.php:259 msgid "" @@ -7556,10 +7558,10 @@ msgid "" "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -"Die PHP-Erweiterung \"mbstring\" wurde nicht gefunden, trotzdem jedoch " -"scheinen Sie einen Mehrbyte-Zeichensatz zu verwenden. Ohne besagte " -"Erweiterung ist phpMyAdmin nicht in der Lage Zeichenketten zu trennen, was " -"zu unerwarteten Ergebnissen führen kann." +"Die PHP-Erweiterung mbstring wurde nicht gefunden, trotzdem jedoch scheinen " +"Sie einen Mehrbyte-Zeichensatz zu verwenden. Ohne besagte Erweiterung ist " +"phpMyAdmin nicht in der Lage Zeichenketten zu trennen, was zu unerwarteten " +"Ergebnissen führen kann." #: main.php:267 msgid "" @@ -7840,13 +7842,13 @@ msgstr "Fehler beim speichern der Koordinaten für den Designer." #: pmd_save_pos.php:52 msgid "Modifications have been saved" -msgstr "Änderungen gespeichert." +msgstr "Änderungen gespeichert" #: prefs_forms.php:78 msgid "Cannot save settings, submitted form contains errors" msgstr "" "Einstellungen können nicht gespeichert werden, ausgefülltes Formular enthält " -"Fehler." +"Fehler" #: prefs_manage.php:80 msgid "Could not import configuration" @@ -7926,7 +7928,7 @@ msgstr "Alle" msgid "%s table not found or not set in %s" msgstr "" "Die Tabelle %s wurde entweder nicht gefunden oder in der " -"Kofigurationsdatei %s nicht gesetzt." +"Kofigurationsdatei %s nicht gesetzt" #: schema_export.php:45 msgid "File doesn't exist" @@ -7981,7 +7983,7 @@ msgstr "Es wurden keine Datenbanken ausgewählt." #: server_databases.php:75 #, php-format msgid "%s databases have been dropped successfully." -msgstr "Es wurden %s Datenbanken gelöscht." +msgstr "%s Datenbanken wurden erfolgreich gelöscht." #: server_databases.php:100 msgid "Databases statistics" @@ -8162,7 +8164,7 @@ msgstr "" 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" +"befinden." #: server_privileges.php:59 server_privileges.php:207 #: server_privileges.php:567 @@ -8227,7 +8229,7 @@ msgstr "Tabellenspezifische Rechte" #: server_privileges.php:444 server_privileges.php:588 #: server_privileges.php:1610 msgid " Note: MySQL privilege names are expressed in English " -msgstr "MySQL-Rechte werden auf Englisch angegeben." +msgstr " Hinweis: MySQL-Rechte werden auf Englisch angegeben " #: server_privileges.php:513 msgid "Administration" @@ -8278,7 +8280,7 @@ msgstr "Die Rechte für %s wurden geändert." #: server_privileges.php:1200 #, php-format msgid "You have revoked the privileges for %s" -msgstr "Sie haben die Rechte für %s entfernt." +msgstr "Sie haben die Rechte für %s widerrufen" #: server_privileges.php:1236 #, php-format @@ -8354,7 +8356,7 @@ msgstr "" "phpMyAdmin liest die Benutzerprofile direkt aus den entsprechenden MySQL-" "Tabellen aus. Der Inhalt dieser Tabellen kann sich von den Benutzerprofilen, " "die MySQL z.Zt. verwendet, unterscheiden, wenn manuelle Änderungen " -"vorgenommen wurden. In diesem Fall sollten Sie %sdie Benutzerprofile neu " +"vorgenommen wurden. In diesem Fall sollten Sie %sdie Benutzerprofile neu " "laden%s bevor Sie fortfahren." #: server_privileges.php:1764 @@ -8449,7 +8451,7 @@ msgstr "Platzhalter" #: server_privileges.php:2295 msgid "User has been added." -msgstr "Benutzer wurde hinzugefügt" +msgstr "Benutzer wurde hinzugefügt." #: server_replication.php:49 msgid "Unknown error" @@ -8463,7 +8465,9 @@ msgstr "Verbindung zu Master %s fehlgeschlagen." #: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." -msgstr "\"log position\" auf Master nicht lesbar. Rechteproblem?" +msgstr "" +"Log-Position des Masters nicht lesbar. Mögliches Rechteproblem auf dem " +"Master." #: server_replication.php:69 msgid "Unable to change master" @@ -8472,7 +8476,7 @@ msgstr "Kann Master nicht wechseln" #: server_replication.php:72 #, php-format msgid "Master server changed successfully to %s" -msgstr "Master-Server wurde erfolgreich auf %s geändert." +msgstr "Master-Server wurde erfolgreich auf %s geändert" #: server_replication.php:180 msgid "This server is configured as master in a replication process." @@ -8524,7 +8528,7 @@ msgstr "Repliziere nur:" #: server_replication.php:223 msgid "Please select databases:" -msgstr "Bitte Datenbank auswählen" +msgstr "Bitte Datenbanken auswählen:" #: server_replication.php:226 msgid "" @@ -8534,15 +8538,16 @@ msgstr "" "Nun die folgenden Zeilen am Ende des [mysqld] Abschnitts in der my.cnf " "hinzufügen. Danach den MySQL-Server neu starten." +# translation from go to "OK" as defined in po file #: server_replication.php:228 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -"Nachdem Sie den MySQL-Server neu gestartet haben, klicken Sie auf \"Go\". " -"Daraufhin sollten Sie eien Meldung sehen, dass dieser Server als Master " -"konfiguriert ist ." +"Nachdem Sie den MySQL-Server neu gestartet haben, klicken Sie auf OK. " +"Daraufhin sollten Sie eine Meldung sehen, dass dieser Server als Master " +"konfiguriert ist" #: server_replication.php:291 msgid "Slave SQL Thread not running!" @@ -8569,7 +8574,7 @@ msgstr "Die Datenbanken mit dem Master abgleichen" #: server_replication.php:320 msgid "Control slave:" -msgstr "Kontrol-Slave" +msgstr "Kontrol-Slave:" #: server_replication.php:323 msgid "Full start" @@ -8628,7 +8633,7 @@ msgid "" "like to configure it?" msgstr "" "Dieser Server ist nicht als Slave in einem Replikationsprozess konfiguriert. " -"Möchten Sie ihn konfigurieren ?" +"Möchten Sie ihn konfigurieren?" #: server_status.php:27 msgid "Refresh rate" @@ -8699,7 +8704,7 @@ msgstr "Transaktions-Koordinator" #: server_status.php:285 msgid "Flush (close) all tables" -msgstr "Alle Tabellen aktualisieren und schließen." +msgstr "Alle Tabellen aktualisieren und schließen" #: server_status.php:287 msgid "Show open tables" @@ -8747,7 +8752,7 @@ msgstr "Nach Kategorie filtern..." #: server_status.php:484 msgid "Related links:" -msgstr "Verwandte Links" +msgstr "Verwandte Links:" #: server_status.php:528 server_status.php:563 server_status.php:676 #: server_status.php:721 @@ -8792,7 +8797,8 @@ msgstr "" #: server_status.php:645 msgid "This MySQL server works as master in replication process." msgstr "" -"Dieser MySQL Server arbeitet als Master im Replikations-Prozess." +"Dieser MySQL Server arbeitet als Master im " +"Replikations-Prozess." #: server_status.php:647 msgid "This MySQL server works as slave in replication process." @@ -8820,9 +8826,9 @@ msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -"Auf stark frequentierten Server können die Byte-Zähler \"überlaufen" -"\" (wieder bei 0 beginnen), deshalb können diese Werte, wie sie vom MySQL " -"Server ausgegeben werden, falsch sein." +"Auf stark frequentierten Server können die Byte-Zähler überlaufen (wieder " +"bei 0 beginnen), deshalb können diese Werte, wie sie vom MySQL Server " +"ausgegeben werden, falsch sein." #: server_status.php:681 msgid "Received" @@ -8908,8 +8914,8 @@ msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -"Anzahl der Zeilen, die mit INSERT DELAYED geschrieben wurden, und bei denen " -"ein Fehler auftrat (z. B. duplicate key)." +"Anzahl der Datensätze, die mit INSERT DELAYED geschrieben wurden, und bei " +"denen ein Fehler auftrat (z. B. duplicate key)." #: server_status.php:864 msgid "" @@ -8921,7 +8927,7 @@ msgstr "" #: server_status.php:865 msgid "The number of INSERT DELAYED rows written." -msgstr "Anzahl der Zeilen, die mit INSERT DELAYED geschrieben wurden." +msgstr "Anzahl der Datensätze, die mit INSERT DELAYED geschrieben wurden." #: server_status.php:866 msgid "The number of executed FLUSH statements." @@ -8933,7 +8939,7 @@ msgstr "Anzahl der Anfragen, ein COMMIT auszuführen." #: server_status.php:868 msgid "The number of times a row was deleted from a table." -msgstr "Anzahl der Zeilen, die aus Tabellen gelöscht wurden." +msgstr "Anzahl der Datensätze, die aus Tabellen gelöscht wurden." #: server_status.php:869 msgid "" @@ -9148,14 +9154,12 @@ msgstr "Wieviel Daten bisher geschrieben wurden, in Byte." #: server_status.php:900 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -"Anzahl der ausgeführten \"doublewrite\" Schreibzugriffe und die Anzahl der " +"Anzahl der ausgeführten doublewrite Schreibzugriffe und die Anzahl der " "Seiten die dafür geschrieben wurden." #: server_status.php:901 msgid "The number of doublewrite operations that have been performed." -msgstr "" -"Anzahl der ausgeführten \"doublewrite\" Schreibzugriffe und die Anzahl der " -"Seiten die dafür geschrieben wurden." +msgstr "Anzahl der ausgeführten doublewrite Zugriffe." #: server_status.php:902 msgid "" @@ -9175,11 +9179,11 @@ msgstr "Anzahl der tatsächlichen Schreibvorgänge der Protokoll-Datei." #: server_status.php:905 msgid "The number of fsync() writes done to the log file." -msgstr "Getätigte fsyncs Schreibzugriffe für die Protokoll-Datei." +msgstr "Getätigte fsync() Schreibzugriffe für die Protokoll-Datei." #: server_status.php:906 msgid "The number of pending log file fsyncs." -msgstr "Anstehende \"fsyncs\" für die Protokoll-Datei." +msgstr "Anstehende fsyncs für die Protokoll-Datei." #: server_status.php:907 msgid "Pending log file writes." @@ -9217,38 +9221,38 @@ msgstr "Momentan anstehende Zeilen-Sperren." #: server_status.php:914 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -"Durchschnittliche Wartezeite um eine Zeilen-Sperre zu bekommen, in " +"Durchschnittliche Wartezeite um eine Datensatz-Sperre zu bekommen, in " "Millisekunden." #: server_status.php:915 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -"Summe aller Wartezeiten um Zeilen-Sperren zu bekommen, in Millisekunden." +"Summe aller Wartezeiten um Datensatz-Sperren zu bekommen, in Millisekunden." #: server_status.php:916 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -"Längste Wartezeite um eine Zeilen-Sperre zu bekommen, in Millisekunden." +"Längste Wartezeite um eine Datensatz-Sperre zu bekommen, in Millisekunden." #: server_status.php:917 msgid "The number of times a row lock had to be waited for." -msgstr "Wie oft auf ein Zeilen-Sperre gewartet werden musste." +msgstr "Wie oft auf ein Datensatz-Sperre gewartet werden musste." #: server_status.php:918 msgid "The number of rows deleted from InnoDB tables." -msgstr "Anzahl gelöschter Zeilen aller InnoDB Tabellen." +msgstr "Anzahl gelöschter Datensätze aller InnoDB Tabellen." #: server_status.php:919 msgid "The number of rows inserted in InnoDB tables." -msgstr "Anzahl der eingefügten Zeilen in alle InnoDB Tabellen." +msgstr "Anzahl der eingefügten Datensätze in alle InnoDB Tabellen." #: server_status.php:920 msgid "The number of rows read from InnoDB tables." -msgstr "Anzahl der Zeilen, die aus InnoDB-Tabellen gelesen wurden." +msgstr "Anzahl der Datensätze, die aus InnoDB-Tabellen gelesen wurden." #: server_status.php:921 msgid "The number of rows updated in InnoDB tables." -msgstr "Anzahl der Zeilen, die in InnoDB-Tabellen aktualisiert wurden." +msgstr "Anzahl der Datensätze, die in InnoDB-Tabellen aktualisiert wurden." #: server_status.php:922 msgid "" @@ -9321,7 +9325,7 @@ msgstr "" #: server_status.php:931 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -"Anzahl der Zeilen, die in INSERT-DELAYED-Warteschleifen darauf warten, " +"Anzahl der Datensätze, die in INSERT-DELAYED-Warteschleifen darauf warten, " "geschrieben zu werden." #: server_status.php:932 @@ -9420,8 +9424,8 @@ msgid "" "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" "Anzahl der Joins ohne Schlüssel, bei denen nach jeder Zeile auf " -"Schlüsselbenutzung geprüft wurde. Wenn dieser Wert nicht 0 ist sollten die " -"Indizes der Tabellen sorgfältig überprüft werden." +"Schlüsselbenutzung geprüft wurde. (Wenn dieser Wert nicht 0 ist sollten die " +"Indizes der Tabellen sorgfältig überprüft werden.)" #: server_status.php:948 msgid "" @@ -9459,7 +9463,7 @@ msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -"Anzahl der Prozesse, die länger als slow_launch_time brauchten, um sich zu " +"Anzahl der Prozesse, die länger als slow_launch_time brauchten, um sich zu " "verbinden." #: server_status.php:954 @@ -9483,7 +9487,7 @@ msgstr "Anzahl der Sortiervorgänge, die mit Bereichen durchgeführt wurden." #: server_status.php:957 msgid "The number of sorted rows." -msgstr "Anzahl der sortierten Zeilen." +msgstr "Anzahl der sortierten Datensätze." #: server_status.php:958 msgid "The number of sorts that were done by scanning the table." @@ -9573,7 +9577,7 @@ msgstr "Datenunterschied" #: server_synchronize.php:425 server_synchronize.php:868 msgid "Add column(s)" -msgstr "Spalte(n) einfügen" +msgstr "Spalte(n) hinzufügen" #: server_synchronize.php:426 server_synchronize.php:869 msgid "Remove column(s)" @@ -9601,7 +9605,8 @@ msgstr "Zeile(n) einfügen" #: server_synchronize.php:441 server_synchronize.php:885 msgid "Would you like to delete all the previous rows from target tables?" -msgstr "Möchten Sie alle vorhergehenden zeilen aus den Ziel-Tabellen löschen?" +msgstr "" +"Möchten Sie alle vorhergehenden Datensätze aus den Ziel-Tabellen löschen?" #: server_synchronize.php:444 server_synchronize.php:889 msgid "Apply Selected Changes" @@ -9650,7 +9655,7 @@ msgstr "" #: server_variables.php:58 msgid "Setting variable failed" -msgstr "Setzen der Variable fehlgeschlagen." +msgstr "Setzen der Variable fehlgeschlagen" #: server_variables.php:77 msgid "Server variables and settings" @@ -9670,7 +9675,7 @@ msgstr "Download" #: setup/frames/index.inc.php:49 msgid "Cannot load or save configuration" -msgstr "Laden oder Speichern der Konfiguration fehlgeschlagen." +msgstr "Laden oder Speichern der Konfiguration fehlgeschlagen" #: setup/frames/index.inc.php:50 msgid "" @@ -10045,7 +10050,7 @@ msgstr "BLOB-Referenz entfernen" #: tbl_change.php:806 msgid "Binary - do not edit" -msgstr "Binär - nicht editierbar!" +msgstr "Binär - nicht editierbar" #: tbl_change.php:854 msgid "Upload to BLOB repository" @@ -10053,7 +10058,7 @@ msgstr "Zu BLOB-Repository hochladen" #: tbl_change.php:983 msgid "Insert as new row" -msgstr "Als neuen Datensatz speichern " +msgstr "Als neuen Datensatz speichern" #: tbl_change.php:984 msgid "Insert as new row and ignore errors" @@ -10061,7 +10066,7 @@ msgstr "Als neue Zeile einfügen und Fehler ignorieren" #: tbl_change.php:985 msgid "Show insert query" -msgstr "Zeige insert Abfrage" +msgstr "Zeige insert Abfrage" #: tbl_change.php:996 msgid "and then" @@ -10093,7 +10098,7 @@ msgstr "" #: tbl_change.php:1062 #, php-format msgid "Continue insertion with %s rows" -msgstr "Einfügen mit %s Zeilen fortfahren" +msgstr "Einfügen mit %s Datensätzen fortfahren" #: tbl_chart.php:85 msgid "Bar" @@ -10117,7 +10122,7 @@ msgstr "Gestapelt" #: tbl_chart.php:94 msgid "Chart title" -msgstr "Titel des Reports:" +msgstr "Titel des Reports" #: tbl_chart.php:99 msgid "X-Axis:" @@ -10133,7 +10138,7 @@ msgstr "Die verbleibenden Spalten" #: tbl_chart.php:128 msgid "X-Axis label:" -msgstr "Beschriftung X-Achse" +msgstr "Beschriftung X-Achse:" #: tbl_chart.php:128 msgid "X Values" @@ -10141,7 +10146,7 @@ msgstr "X-Werte" #: tbl_chart.php:129 msgid "Y-Axis label:" -msgstr "Beschriftung Y-Achse" +msgstr "Beschriftung Y-Achse:" #: tbl_chart.php:129 msgid "Y Values" @@ -10203,7 +10208,7 @@ msgstr "Dateiname" #: tbl_indexes.php:66 msgid "The name of the primary key must be \"PRIMARY\"!" -msgstr "Der Name des Primärschlüssels muss PRIMARY lauten!" +msgstr "Der Name des Primärschlüssels muss \"PRIMARY\" lauten!" #: tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" @@ -10211,7 +10216,7 @@ msgstr "Kann Index nicht in PRIMARY umbenennen!" #: tbl_indexes.php:91 msgid "No index parts defined!" -msgstr "Keine Indizes definiert." +msgstr "Keine Indizes definiert" #: tbl_indexes.php:165 msgid "Create a new index" @@ -10224,7 +10229,9 @@ msgstr "Index modifizieren" #: tbl_indexes.php:172 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" -msgstr "Der Name des Primärschlüssels darf nur \"PRIMARY\" lauten." +msgstr "" +"Der Name des Primärschlüssels (und nur dessen) darf nur " +"\"PRIMARY\" lauten." #: tbl_indexes.php:175 msgid "Index name:" @@ -10305,11 +10312,11 @@ msgstr "Tabelle defragmentieren" #, php-format msgid "Table %s has been flushed" msgstr "" -"Die Tabelle %s wurde geschlossen und zwischengespeicherte Daten gespeichert." +"Die Tabelle %s wurde geschlossen und zwischengespeicherte Daten gespeichert" #: tbl_operations.php:668 msgid "Flush the table (FLUSH)" -msgstr "Leeren des Tabellencaches (\"FLUSH\")" +msgstr "Leeren des Tabellencaches (FLUSH)" #: tbl_operations.php:677 msgid "Delete data or table" @@ -10378,7 +10385,7 @@ msgstr "Effektiv" #: tbl_printview.php:363 tbl_structure.php:858 msgid "Row Statistics" -msgstr "Zeilenstatistik" +msgstr "Datensatz-Statistiken" #: tbl_printview.php:366 tbl_structure.php:861 msgid "Statements" @@ -10398,7 +10405,7 @@ msgstr "Zeilenlänge" #: tbl_printview.php:411 tbl_structure.php:926 msgid " Row size " -msgstr "Zeilengröße" +msgstr " Zeilengröße " #: tbl_relation.php:276 #, php-format @@ -10433,7 +10440,7 @@ msgstr "Spalten auswählen (min. eines):" #: tbl_select.php:278 msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Eigenes Filterkriterium (Argumente für den WHERE-Ausdruck):" +msgstr "Eigenes Filterkriterium (Argumente für den \"WHERE\"-Ausdruck):" #: tbl_select.php:285 msgid "Number of rows per page" @@ -10704,7 +10711,8 @@ msgstr "Verfügbare MIME-Typen" msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -"Kursiv dargestellte MIME-Typen besitzen keine untergliederten Umwandlungen." +"Kursiv dargestellte MIME-Typen besitzen keine untergliederten Umwandlungs-" +"Funktionen" #: transformation_overview.php:42 msgid "Available transformations" diff --git a/po/en_GB.po b/po/en_GB.po index f1c234fbcf..939b9baa88 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-06-27 15:25+0200\n" +"PO-Revision-Date: 2011-07-09 16:40+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -1280,16 +1280,14 @@ msgid "Insert Table" msgstr "Insert Table" #: js/messages.php:113 -#, fuzzy #| msgid "Add index" msgid "Hide indexes" -msgstr "Add index" +msgstr "Hide indexes" #: js/messages.php:114 -#, fuzzy #| msgid "Show grid" msgid "Show indexes" -msgstr "Show grid" +msgstr "Show indexes" #: js/messages.php:117 msgid "Searching" @@ -4298,12 +4296,13 @@ msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" +"Defines whether or not type display direction option is shown when browsing " +"a table" #: libraries/config/messages.inc.php:454 -#, fuzzy #| msgid "Default display direction" msgid "Show display direction" -msgstr "Default display direction" +msgstr "Show display direction" #: libraries/config/messages.inc.php:455 msgid "" @@ -5258,7 +5257,7 @@ msgstr "Click to mark/unmark" #: libraries/display_tbl.lib.php:420 msgid "Click the drop-down arrow
to toggle column's visibility" -msgstr "" +msgstr "Click the drop-down arrow
to toggle column's visibility" #: libraries/display_tbl.lib.php:431 #, php-format @@ -5266,22 +5265,19 @@ msgid "%d is not valid row number." msgstr "%d is not valid row number." #: libraries/display_tbl.lib.php:436 -#, fuzzy #| msgid "Textarea rows" msgid "Start row" -msgstr "Textarea rows" +msgstr "Start row" #: libraries/display_tbl.lib.php:438 -#, fuzzy #| msgid "Number of rows:" msgid "Number of rows" -msgstr "Number of rows:" +msgstr "Number of rows" #: libraries/display_tbl.lib.php:443 -#, fuzzy #| msgid "More" msgid "Mode" -msgstr "More" +msgstr "Mode" #: libraries/display_tbl.lib.php:445 msgid "horizontal" @@ -5298,7 +5294,7 @@ msgstr "vertical" #: libraries/display_tbl.lib.php:452 #, php-format msgid "Headers every %s rows" -msgstr "" +msgstr "Headers every %s rows" #: libraries/display_tbl.lib.php:546 msgid "Sort by key" diff --git a/po/fr.po b/po/fr.po index 37333b7980..b69cbef41a 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-06-27 15:26+0200\n" +"PO-Revision-Date: 2011-07-09 20:07+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" "Language: fr\n" @@ -1296,16 +1296,14 @@ msgid "Insert Table" msgstr "Insérer dans la table" #: js/messages.php:113 -#, fuzzy #| msgid "Add index" msgid "Hide indexes" -msgstr "Ajouter un index" +msgstr "Cacher les index" #: js/messages.php:114 -#, fuzzy #| msgid "Show grid" msgid "Show indexes" -msgstr "Grille" +msgstr "Montrer les index" #: js/messages.php:117 msgid "Searching" @@ -1919,7 +1917,7 @@ msgstr "Connexion impossible: paramètres incorrects." #: libraries/auth/cookie.auth.lib.php:172 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" -msgstr "Bienvenue sur %s" +msgstr "Bienvenue dans %s" #: libraries/auth/config.auth.lib.php:106 #, php-format @@ -4347,12 +4345,13 @@ msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" +"Définit si l'option de direction d'affichage est montrée lorsqu'on affiche " +"le contenu d'une table" #: libraries/config/messages.inc.php:454 -#, fuzzy #| msgid "Default display direction" msgid "Show display direction" -msgstr "Valeur par défaut de la direction de l'affichage" +msgstr "Montrer le sélecteur de direction de l'affichage" #: libraries/config/messages.inc.php:455 msgid "" @@ -5318,7 +5317,7 @@ msgstr "Cliquer pour marquer/enlever les marques" #: libraries/display_tbl.lib.php:420 msgid "Click the drop-down arrow
to toggle column's visibility" -msgstr "" +msgstr "Cliquer sur la flèche
pour gérer l'affichage des colonnes" #: libraries/display_tbl.lib.php:431 #, php-format @@ -5326,22 +5325,19 @@ msgid "%d is not valid row number." msgstr "%d n'est pas un numéro de ligne valable." #: libraries/display_tbl.lib.php:436 -#, fuzzy #| msgid "Textarea rows" msgid "Start row" -msgstr "Taille verticale pour une zone de texte" +msgstr "Ligne de départ" #: libraries/display_tbl.lib.php:438 -#, fuzzy #| msgid "Number of rows:" msgid "Number of rows" msgstr "Nombre de lignes" #: libraries/display_tbl.lib.php:443 -#, fuzzy #| msgid "More" msgid "Mode" -msgstr "plus" +msgstr "Mode" #: libraries/display_tbl.lib.php:445 msgid "horizontal" @@ -5358,7 +5354,7 @@ msgstr "vertical" #: libraries/display_tbl.lib.php:452 #, php-format msgid "Headers every %s rows" -msgstr "" +msgstr "En-têtes à intervalle de %s lignes" #: libraries/display_tbl.lib.php:546 msgid "Sort by key" diff --git a/po/pt_BR.po b/po/pt_BR.po index 62f27bb616..0aaa02f284 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-07-07 15:16+0200\n" -"PO-Revision-Date: 2011-07-05 15:06+0200\n" -"Last-Translator: \n" +"PO-Revision-Date: 2011-07-11 04:42+0200\n" +"Last-Translator: \n" "Language-Team: brazilian_portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" @@ -247,6 +247,7 @@ msgstr "Ver o esquema do Banco de Dados" #: db_export.php:30 db_printview.php:94 db_qbe.php:101 db_tracking.php:48 #: export.php:371 navigation.php:299 +#, fuzzy msgid "No tables found in database." msgstr "Nenhuma tabela encontrada no Banco de Dados" @@ -595,6 +596,10 @@ msgid "" "handling multi queries. The execution of some stored routines may fail! Please use the improved 'mysqli' extension to avoid any problems." msgstr "" +"Você está usando extensão 'mysql' obsoleta do PHP, que não é capaz de lidar " +"com multi consultas. A execução de algumas rotinas de armazenamento " +"podem falhar! Por favor, use a extensão melhorada 'mysqli' para evitar " +"quaisquer problemas." #: db_search.php:30 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 @@ -1154,7 +1159,7 @@ msgstr "Gráfico de tráfego em tempo real" #: js/messages.php:65 server_status.php:423 msgid "Live conn./process chart" -msgstr "" +msgstr "Quadro conn./process em tempo real" #: js/messages.php:66 server_status.php:445 msgid "Live query chart" @@ -1321,6 +1326,7 @@ msgstr "Apagando %s" #: js/messages.php:124 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" +"A definição de uma função armazenada deve conter uma instrução de RETURN!" #: js/messages.php:125 #, fuzzy @@ -1920,7 +1926,7 @@ msgstr "Encontrado caminho inválido para o tema %s!" #: libraries/Theme_Manager.class.php:286 themes.php:20 themes.php:40 msgid "Theme" -msgstr "" +msgstr "Tema" #: libraries/auth/config.auth.lib.php:76 msgid "Cannot connect: invalid settings." @@ -1971,7 +1977,7 @@ msgstr "Você pode digitar a url/IP e a porta separados por um espaço." #: libraries/auth/cookie.auth.lib.php:211 msgid "Server:" -msgstr "Servidor" +msgstr "Servidor:" #: libraries/auth/cookie.auth.lib.php:216 msgid "Username:" @@ -2015,7 +2021,7 @@ msgstr "Usuário ou senha incorreta. Acesso negado." #: libraries/auth/signon.auth.lib.php:87 msgid "Can not find signon authentication script:" -msgstr "Não é possível encontrar o script de autenticação de logon" +msgstr "Não é possível encontrar o script de autenticação de logon:" #: libraries/auth/swekey/swekey.auth.lib.php:118 #, php-format @@ -2132,6 +2138,8 @@ msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" +"Isso geralmente significa que há um erro de sintaxe, por favor cheque " +"qualquer erro mostrado abaixo." #: libraries/common.inc.php:595 #, fuzzy, php-format @@ -2143,7 +2151,9 @@ msgstr "Não foi possível carregar configuração padrão de: \"%1$s\"" msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" -msgstr "A variável $cfg['PmaAbsoluteUri'] deve ser setada" +msgstr "" +"A diretriz$cfg['PmaAbsoluteUri'] deve ser estabelecida no seu " +"arquivo de configuração!" #: libraries/common.inc.php:630 #, fuzzy, php-format @@ -2212,7 +2222,7 @@ msgstr "consulta SQL" #: libraries/common.lib.php:1031 msgid "Failed to connect to SQL validator!" -msgstr "Falha ao conectar ao validador SQL" +msgstr "Falha ao conectar ao validador SQL!" #: libraries/common.lib.php:1072 libraries/config/messages.inc.php:474 msgid "Explain SQL" @@ -2366,8 +2376,7 @@ msgstr "Selecionar a partir do diretório de upload do servidor %s:" #: libraries/common.lib.php:2814 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 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." +msgstr "O diretório que você especificou para subir arquivos não foi encontrado" #: libraries/common.lib.php:2822 msgid "There are no files to upload" @@ -2375,7 +2384,7 @@ msgstr "Não existem arquivos para fazer upload" #: libraries/common.lib.php:2849 libraries/common.lib.php:2850 msgid "Execute" -msgstr "" +msgstr "Executar" #: libraries/config.values.php:45 libraries/config.values.php:47 #: libraries/config.values.php:51 @@ -2434,7 +2443,7 @@ msgstr "Personalizada - exibir todas as opções possíveis para configurar" #: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" -msgstr "Personalizada - como acima, mas sem a escolha rápida/personalizada." +msgstr "Personalizada - como acima, mas sem a escolha rápida/personalizada" #: libraries/config.values.php:120 #, fuzzy @@ -2454,7 +2463,7 @@ msgstr "ambos acima" #: libraries/config.values.php:123 msgid "neither of the above" -msgstr "nenhuma das acima." +msgstr "nenhuma das acima" #: libraries/config/FormDisplay.class.php:83 #: libraries/config/validate.lib.php:412 @@ -2587,33 +2596,35 @@ msgstr "Permitir elaboração de terceiros" #: libraries/config/messages.inc.php:23 msgid "Show "Drop database" link to normal users" -msgstr "" +msgstr "Exibir link "Apagar banco de dados" para usuários normais" #: libraries/config/messages.inc.php:24 msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" +"Frase secreta utilizada para encriptar cookies na autenticação por " +"[kbd]cookie[/kbd]" #: libraries/config/messages.inc.php:25 msgid "Blowfish secret" -msgstr "" +msgstr "Segredo Blowfish" #: libraries/config/messages.inc.php:26 msgid "Highlight selected rows" -msgstr "" +msgstr "Destacar linhas selecionadas" #: libraries/config/messages.inc.php:27 msgid "Row marker" -msgstr "" +msgstr "Marcador de linha" #: libraries/config/messages.inc.php:28 msgid "Highlight row pointed by the mouse cursor" -msgstr "" +msgstr "Destacar linha apontada pelo cursor do mouse" #: libraries/config/messages.inc.php:29 msgid "Highlight pointer" -msgstr "" +msgstr "Destacar apontador" #: libraries/config/messages.inc.php:30 msgid "" @@ -2623,7 +2634,7 @@ msgstr "" #: libraries/config/messages.inc.php:31 msgid "Bzip2" -msgstr "" +msgstr "Bzip2" #: libraries/config/messages.inc.php:32 msgid "" @@ -2631,14 +2642,17 @@ msgid "" "columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/" "kbd] - allows newlines in columns" msgstr "" +"Define que tipo de controles de edição devem ser utilizados pelas colunas " +"CHAR e VARCHAR; [kbd]input[/kbd] - permite limitar o tamanho do campo, " +"[kbd]textarea[/kbd] - permite quebra de linhas em colunas" #: libraries/config/messages.inc.php:33 msgid "CHAR columns editing" -msgstr "" +msgstr "Edição de colunas CHAR" #: libraries/config/messages.inc.php:34 msgid "Number of columns for CHAR/VARCHAR textareas" -msgstr "" +msgstr "Número de colunas para caixas de texto CHAR/VARCHAR" #: libraries/config/messages.inc.php:35 msgid "CHAR textarea columns" @@ -2962,10 +2976,9 @@ msgid "SQL compatibility mode" msgstr "Modo de compatibilidade SQL" #: libraries/config/messages.inc.php:122 libraries/export/sql.php:176 -#, fuzzy #| msgid "@TABLE@" msgid "CREATE TABLE options:" -msgstr "@TABLE@" +msgstr "CRIAR TABELA opções:" #: libraries/config/messages.inc.php:123 msgid "Creation/Update/Check dates" @@ -3174,10 +3187,9 @@ msgid "Settings that didn't fit enywhere else" msgstr "" #: libraries/config/messages.inc.php:192 -#, fuzzy #| msgid "Page number:" msgid "Page titles" -msgstr "Numero da página:" +msgstr "Títulos das páginas" #: libraries/config/messages.inc.php:193 msgid "" @@ -3213,14 +3225,12 @@ msgid "Basic settings" msgstr "Configurações básicas" #: libraries/config/messages.inc.php:199 -#, fuzzy msgid "Authentication" -msgstr "Autenticando..." +msgstr "Autenticação" #: libraries/config/messages.inc.php:200 -#, fuzzy msgid "Authentication settings" -msgstr "Autenticando..." +msgstr "Configurações de autenticação" #: libraries/config/messages.inc.php:201 msgid "Server configuration" @@ -3477,10 +3487,9 @@ msgid "Display servers selection" msgstr "" #: libraries/config/messages.inc.php:272 -#, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of tables to display the table filter box" -msgstr "O número de tabelas que estão abertas." +msgstr "Número mínimo de tabelas para mostrar a caixa de filtro de tabelas" #: libraries/config/messages.inc.php:273 msgid "String that separates databases into different tree levels" @@ -3897,9 +3906,8 @@ msgid "SweKey config file" msgstr "" #: libraries/config/messages.inc.php:369 -#, fuzzy msgid "Authentication method to use" -msgstr "Autenticando..." +msgstr "Método de autenticação para usar" #: libraries/config/messages.inc.php:370 setup/frames/index.inc.php:126 msgid "Authentication type" @@ -4701,10 +4709,9 @@ msgid "Events" msgstr "Eventos" #: libraries/db_events.inc.php:58 libraries/db_events.inc.php:60 -#, fuzzy #| msgid "There are no files to upload" msgid "There are no events to display." -msgstr "Não existem arquivos para fazer upload" +msgstr "Não existem eventos para serem mostrados" #: libraries/db_events.inc.php:67 libraries/db_routines.lib.php:661 #: libraries/db_routines.lib.php:807 libraries/db_routines.lib.php:1156 @@ -4770,10 +4777,9 @@ msgid "Triggers" msgstr "Gatilhos" #: libraries/db_routines.lib.php:630 -#, fuzzy #| msgid "Details..." msgid "Details" -msgstr "Detalhes..." +msgstr "Detalhes" #: libraries/db_routines.lib.php:633 #, fuzzy @@ -4912,10 +4918,9 @@ msgid "You must provide a routine definition." msgstr "" #: libraries/db_routines.lib.php:1151 -#, fuzzy #| msgid "There are no files to upload" msgid "There are no routines to display." -msgstr "Não existem arquivos para fazer upload" +msgstr "Não existem rotinas para mostrar." #: libraries/db_routines.lib.php:1192 #, fuzzy @@ -4924,10 +4929,9 @@ msgid "Add routine" msgstr "Adicionar índice" #: libraries/db_routines.lib.php:1195 -#, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" msgid "You do not have the necessary privileges to create a new routine" -msgstr "Você não tem direitos suficientes para estar aqui agora!" +msgstr "Você não tem direitos suficientes para criar uma nova rotina" #: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2084 msgid "" @@ -5012,10 +5016,9 @@ msgid "Could not load export plugins, please check your installation!" msgstr "Não pode carregar exportação dos plugins, verifique sua instalação!" #: libraries/display_export.lib.php:80 -#, fuzzy #| msgid "Allows locking tables for the current thread." msgid "Exporting databases from the current server" -msgstr "Permitir bloquear tabelas para a processo atual." +msgstr "Exportar bancos de dados do servidor atual" #: libraries/display_export.lib.php:82 #, fuzzy, php-format @@ -5033,7 +5036,7 @@ msgstr "Criar nova tabela no Banco de Dados %s" #, fuzzy #| msgid "Export type" msgid "Export Method:" -msgstr "Tipo de exportação" +msgstr "Método de exportação:" #: libraries/display_export.lib.php:106 msgid "Quick - display only the minimal options" @@ -5061,10 +5064,9 @@ msgid "Dump some row(s)" msgstr "" #: libraries/display_export.lib.php:152 -#, fuzzy #| msgid "Number of fields" msgid "Number of rows:" -msgstr "Número de arquivos" +msgstr "Número de linhas:" #: libraries/display_export.lib.php:155 msgid "Row to begin at:" @@ -5091,10 +5093,9 @@ msgid "Save output to a file" msgstr "Enviado" #: libraries/display_export.lib.php:220 -#, fuzzy #| msgid "File name template" msgid "File name template:" -msgstr "Nome do arquivo do modelo" +msgstr "Nome do arquivo do modelo:" #: libraries/display_export.lib.php:222 msgid "@SERVER@ will become the server name" @@ -5130,13 +5131,12 @@ msgstr "" #: libraries/display_export.lib.php:274 libraries/display_import.lib.php:188 #: libraries/display_import.lib.php:201 libraries/sql_query_form.lib.php:463 msgid "Character set of the file:" -msgstr "Conjunto de caracteres do arquivo" +msgstr "Conjunto de caracteres do arquivo:" #: libraries/display_export.lib.php:304 -#, fuzzy #| msgid "Compression" msgid "Compression:" -msgstr "Compressão" +msgstr "Compressão:" #: libraries/display_export.lib.php:306 libraries/display_tbl.lib.php:564 #: libraries/export/sql.php:1058 libraries/tbl_properties.inc.php:562 @@ -5170,16 +5170,14 @@ msgstr "Enviado" #: libraries/display_export.lib.php:326 libraries/display_import.lib.php:244 #: libraries/export/codegen.php:38 -#, fuzzy #| msgid "Format" msgid "Format:" -msgstr "Formato" +msgstr "Formato:" #: libraries/display_export.lib.php:331 -#, fuzzy #| msgid "Transformation options" msgid "Format-specific options:" -msgstr "Opções de transformação" +msgstr "Opções de formato especifico:" #: libraries/display_export.lib.php:332 msgid "" @@ -5188,9 +5186,8 @@ msgid "" msgstr "" #: libraries/display_export.lib.php:340 libraries/display_import.lib.php:260 -#, fuzzy msgid "Encoding Conversion:" -msgstr "Versão do cliente MySQL" +msgstr "Codificação de conversão:" #: libraries/display_import.lib.php:66 msgid "" @@ -5226,10 +5223,9 @@ msgid "Importing into the table \"%s\"" msgstr "Sem bases" #: libraries/display_import.lib.php:139 -#, fuzzy #| msgid "File to import" msgid "File to Import:" -msgstr "Arquivo para importar" +msgstr "Arquivo para importar:" #: libraries/display_import.lib.php:156 #, php-format @@ -5247,10 +5243,9 @@ msgid "File uploads are not allowed on this server." msgstr "Não é permitido subir arquivos neste servidor." #: libraries/display_import.lib.php:208 -#, fuzzy #| msgid "Partial import" msgid "Partial Import:" -msgstr "Importação parcial" +msgstr "Importação parcial:" #: libraries/display_import.lib.php:214 #, php-format @@ -5261,7 +5256,6 @@ msgstr "" "continuar na posição %d." #: libraries/display_import.lib.php:221 -#, fuzzy #| msgid "" #| "Allow the interruption of an import in case the script detects it is " #| "close to the PHP timeout limit. This might be good way to import large " @@ -5276,10 +5270,9 @@ msgstr "" "grandes, entretanto isso pode interromper as transações." #: libraries/display_import.lib.php:228 -#, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of rows to skip, starting from the first row:" -msgstr "Número de registros (consultas) ignoradas no início" +msgstr "Número de registros para pular, iniciando da primeira linha:" #: libraries/display_import.lib.php:250 msgid "Format-Specific Options:" @@ -5475,13 +5468,13 @@ msgstr "" #, fuzzy, php-format #| msgid "No valid image path for theme %s found!" msgid "No trigger with name %s found" -msgstr "Encontrado caminho inválido para imagens para o tema %s!" +msgstr "Nenhum trigger com o nome %s encontrado" #: libraries/display_triggers.inc.php:64 libraries/display_triggers.inc.php:66 #, fuzzy #| msgid "There are no files to upload" msgid "There are no triggers to display." -msgstr "Não existem arquivos para fazer upload" +msgstr "Não existem triggers para mostrar" #: libraries/display_triggers.inc.php:77 server_status.php:800 sql.php:943 msgid "Time" @@ -5916,47 +5909,42 @@ msgid "The PrimeBase Media Streaming (PBMS) home page" msgstr "" #: libraries/export/csv.php:24 libraries/import/csv.php:28 -#, fuzzy #| msgid "Lines terminated by" msgid "Columns separated with:" -msgstr "Linhas terminadas por" +msgstr "Colunas separadas com:" #: libraries/export/csv.php:25 libraries/import/csv.php:29 -#, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with:" -msgstr "Campos delimitados por" +msgstr "Colunas delimitadas por:" #: libraries/export/csv.php:26 libraries/import/csv.php:30 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with:" -msgstr "Campos contornados por" +msgstr "Campos pulados por:" #: libraries/export/csv.php:27 libraries/import/csv.php:31 -#, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with:" -msgstr "Linhas terminadas por" +msgstr "Linhas terminadas com:" #: libraries/export/csv.php:28 libraries/export/excel.php:23 #: libraries/export/htmlword.php:29 libraries/export/latex.php:80 #: libraries/export/ods.php:24 libraries/export/odt.php:60 #: libraries/export/xls.php:24 libraries/export/xlsx.php:24 -#, fuzzy #| msgid "Replace NULL by" msgid "Replace NULL with:" -msgstr "Substituir NULL por" +msgstr "Substituir NULL com:" #: libraries/export/csv.php:29 libraries/export/excel.php:24 msgid "Remove carriage return/line feed characters within columns" msgstr "" #: libraries/export/excel.php:33 -#, fuzzy #| msgid "Excel edition" msgid "Excel edition:" -msgstr "Edição do Excel" +msgstr "Edição do Excel:" #: libraries/export/htmlword.php:28 libraries/export/latex.php:70 #: libraries/export/odt.php:56 libraries/export/sql.php:208 @@ -6062,10 +6050,9 @@ msgid "(Generates a report containing the data of a single table)" msgstr "(Gerado um relatório contendo dados da tabela simples)" #: libraries/export/pdf.php:25 -#, fuzzy #| msgid "Report title" msgid "Report title:" -msgstr "Título do Relatório" +msgstr "Título do Relatório:" #: libraries/export/php_array.php:18 msgid "PHP array" @@ -6081,7 +6068,9 @@ msgstr "" #, fuzzy #| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" -msgstr "Adicionar comentário pessoal no cabeçalho (\\n quebra linhas)" +msgstr "" +"Adicionar comentário pessoal no cabeçalho (\n" +" quebra linhas)" #: libraries/export/sql.php:48 msgid "" @@ -6102,10 +6091,9 @@ msgid "Add %s statement" msgstr "Comandos" #: libraries/export/sql.php:145 -#, fuzzy #| msgid "Statements" msgid "Add statements:" -msgstr "Comandos" +msgstr "Adicionar instruções:" #: libraries/export/sql.php:197 msgid "" @@ -6348,7 +6336,6 @@ msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" #: libraries/import/sql.php:33 -#, fuzzy #| msgid "SQL compatibility mode" msgid "SQL compatibility mode:" msgstr "Modo de compatibilidade SQL" @@ -6411,7 +6398,7 @@ msgstr "Conjunto de caracteres" #: libraries/mysql_charsets.lib.php:198 libraries/mysql_charsets.lib.php:399 #: tbl_change.php:556 msgid "Binary" -msgstr " Binário " +msgstr " Binário" #: libraries/mysql_charsets.lib.php:210 msgid "Bulgarian" @@ -6850,7 +6837,6 @@ msgid "Create a page" msgstr "Criar uma nova página" #: libraries/schema/User_Schema.class.php:95 -#, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Numero da página:" @@ -6907,7 +6893,7 @@ msgstr "Mostrar dimensão das tabelas" #: libraries/schema/User_Schema.class.php:380 msgid "Display all tables with the same width" -msgstr "mostrar todas as tabelas com o mesmo tamanho?" +msgstr "Mostrar todas as tabelas com o mesmo tamanho" #: libraries/schema/User_Schema.class.php:385 msgid "Only show keys" @@ -7272,7 +7258,6 @@ msgid "+ Add a value" msgstr "+ Adicionar um valor" #: libraries/transformations/application_octetstream__download.inc.php:9 -#, fuzzy #| msgid "" #| "Displays a link to download the binary data of the field. You can use the " #| "first option to specify the filename, or use the second option as the " @@ -7284,10 +7269,11 @@ msgid "" "of a column which contains the filename. If you use the second option, you " "need to set the first option to the empty string." msgstr "" -"Mostrar o link para baixar os dados binários do campo. Primeira opção é o " -"nome do arquivo binário. Segunda opção é um possível nome de campo de uma " -"linha da tabela que contém o nome do arquivo. Se você usar a segunda opção " -"precisa colocar na primeira opção uma string em branco" +"Mostrar um link para baixar os dados binários da coluna. Você pode usar a " +"primeira opção para especificar o nome do arquivo, ou usar a segunda opção " +"como o nome de uma coluna que contém o nome do arquivo. Se você usar a " +"segunda opção, você precisará primeiro de configurar a primeira opção para a " +"string vazia." #: libraries/transformations/application_octetstream__hex.inc.php:9 msgid "" @@ -7304,8 +7290,8 @@ msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." msgstr "" -"Mostrar uma miniatura clicável; opções: largura,altura em pixels (mantém a " -"proporção original)" +"Mostrar uma miniatura clicável; As opções são a largura e altura máxima em " +"pixels." #: libraries/transformations/image_jpeg__link.inc.php:9 msgid "Displays a link to download this image." diff --git a/tbl_indexes.php b/tbl_indexes.php index 7e9bec60f2..39205f24df 100644 --- a/tbl_indexes.php +++ b/tbl_indexes.php @@ -108,6 +108,10 @@ if (isset($_REQUEST['do_save_data'])) { require './tbl_structure.php'; exit; } else { + if( $GLOBALS['is_ajax_request'] == true) { + $extra_data['error'] = $error; + PMA_ajaxResponse($error,false); + } $error->display(); } } // end builds the new index @@ -158,7 +162,7 @@ if (isset($_REQUEST['create_index'])) { echo PMA_generate_common_hidden_inputs($form_params); ?> -
+
must be the name of and only of
- generateIndexSelector(); ?> diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index 3927c4df04..585ae88e03 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -969,15 +969,12 @@ h3#serverstatusqueries span { display:inline; } -table#serverstatusqueriesdetails th img.sortableIcon, table#serverstatusvariables th img.sortableIcon { - background-image:url(getImgPath(); ?>s_sortable.png); -} -table#serverstatusqueriesdetails th.headerSortUp img.sortableIcon, table#serverstatusvariables th.headerSortUp img.sortableIcon { - background-image:url(getImgPath(); ?>s_asc.png); -} -table#serverstatusqueriesdetails th.headerSortDown img.sortableIcon, table#serverstatusvariables th.headerSortDown img.sortableIcon { +th.headerSortUp img.sortableIcon, th.headerSortUp img.sortableIcon { background-image:url(getImgPath(); ?>s_desc.png); } +th.headerSortDown img.sortableIcon, th.headerSortDown img.sortableIcon { + background-image:url(getImgPath(); ?>s_asc.png); +} .statuslinks { float: ; @@ -993,7 +990,7 @@ div#serverStatusTabs { margin-top:1em; } -div#serverstatus table caption a.top { +caption a.top { float: ; } diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php index 94e02603f6..6159c42804 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -1175,12 +1175,15 @@ h3#serverstatusqueries span { display:inline; } -table#serverstatusqueriesdetails th.headerSortUp img.sortableIcon, table#serverstatusvariables th.headerSortUp img.sortableIcon { - background-image:url(getImgPath(); ?>s_asc.png); +th img.sortableIcon, th img.sortableIcon { + background-image:url(getImgPath(); ?>s_sortable.png); } -table#serverstatusqueriesdetails th.headerSortDown img.sortableIcon, table#serverstatusvariables th.headerSortDown img.sortableIcon { +th.headerSortUp img.sortableIcon, th.headerSortUp img.sortableIcon { background-image:url(getImgPath(); ?>s_desc.png); } +th.headerSortDown img.sortableIcon, th.headerSortDown img.sortableIcon { + background-image:url(getImgPath(); ?>s_asc.png); +} .statuslinks { float: ; @@ -1196,7 +1199,7 @@ div#serverStatusTabs { margin-top:1em; } -div#serverstatus table caption a.top { +caption a.top { float: ; } diff --git a/themes/pmahomme/img/s_sortable.png b/themes/pmahomme/img/s_sortable.png index 0a341429eb..9f9950f2c7 100644 Binary files a/themes/pmahomme/img/s_sortable.png and b/themes/pmahomme/img/s_sortable.png differ