diff --git a/ChangeLog b/ChangeLog index 65cc9cf577..0acc4f5fc7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,28 @@ phpMyAdmin - ChangeLog ====================== +4.8.3 (2018-08-22) +- issue #14314 Error when naming a database '0' +- issue #14333 Fix NULL as default not shown +- issue #14229 Fixes issue with recent table list +- issue #14045 Fix slow performance on DB structure filtering +- issue #14327 Fix Editing server variable not showing save or cancel option +- issue #14377 Populate options for view create and edit +- issue #14171 2FA configuration fails if PHP doesn't have GD support +- issue #14390 Can't unhide tables +- issue #14382 "Visualize GIS data" icon missing +- issue #14435 Event scheduler status toggle doesn't work +- issue #14365 View not working on multiple servers +- issue #14207 Partition actions in table structure do not work +- issue #14375 Fixes ERR_BLOCKED_BY_XSS_AUDITOR on export table +- issue #14552 Blank message shown instead of MySQL error when adding trigger and other locations +- issue #14525 Fix PHP 7.3 warning: "continue" in "switch" is equal to "break" +- issue #14554 Icon missing when creating a new trigger, routine, and event +- issue #14422 Table comment not showing since 4.8.1 +- issue #14426 Drop table doesn't work when you copy tables to another database +- issue #14581 Escaped HTML in 'Add a new server' setup +- issue #14548 [security] HTML injection in import warning messages, see PMASA-2018-5 + 4.8.2 (2018-06-21) - issue #14370 WHERE 0 causes Fatal error - issue #14225 Fix missing index icon diff --git a/README b/README index 614f90c8c0..10f5102d09 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ phpMyAdmin - Readme =================== -Version 4.8.2 +Version 4.8.3 A web interface for MySQL and MariaDB. diff --git a/doc/conf.py b/doc/conf.py index 09b1740027..669ae7a9e6 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -51,7 +51,7 @@ copyright = u'2012 - 2018, The phpMyAdmin devel team' # built documents. # # The short X.Y version. -version = '4.8.2' +version = '4.8.3' # The full version, including alpha/beta/rc tags. release = version diff --git a/js/functions.js b/js/functions.js index 698dfb2208..0cbb39e4ec 100644 --- a/js/functions.js +++ b/js/functions.js @@ -155,7 +155,7 @@ function PMA_addDatepicker ($this_element, type, options) { } } }; - if (type == "time") { + if (type == 'time') { $this_element.timepicker($.extend(defaultOptions, options)); // Add a tip regarding entering MySQL allowed-values for TIME data-type PMA_tooltip($this_element, 'input', PMA_messages.strMysqlAllowedValuesTipTime); @@ -674,7 +674,7 @@ function confirmLink (theLink, theSqlQuery) { if (is_confirmed) { if (typeof(theLink.href) !== 'undefined') { theLink.href += PMA_commonParams.get('arg_separator') + 'is_js_confirmed=1'; - } else if (typeof(theLink.form) != 'undefined') { + } else if (typeof(theLink.form) !== 'undefined') { theLink.form.action += '?is_js_confirmed=1'; } } @@ -3738,9 +3738,9 @@ function indexEditorDialog (url, title, callback_success, callback_failure) { var $form = $('#index_frm'); var $msgbox = PMA_ajaxShowMessage(PMA_messages.strProcessingRequest); PMA_prepareForAjaxRequest($form); - //User wants to submit the form - $.post($form.attr('action'), $form.serialize() + PMA_commonParams.get('arg_separator') + "do_save_data=1", function (data) { - var $sqlqueryresults = $(".sqlqueryresults"); + // User wants to submit the form + $.post($form.attr('action'), $form.serialize() + PMA_commonParams.get('arg_separator') + 'do_save_data=1', function (data) { + var $sqlqueryresults = $('.sqlqueryresults'); if ($sqlqueryresults.length !== 0) { $sqlqueryresults.remove(); } @@ -4032,8 +4032,8 @@ var toggleButton = function ($obj) { addClass = 'on'; } - var params = { 'ajax_request': true }; - $.post(url, params, function (data) { + var parts = url.split('?'); + $.post(parts[0], parts[1] + '&ajax_request=true', function (data) { if (typeof data !== 'undefined' && data.success === true) { PMA_ajaxRemoveMessage($msg); $container @@ -4543,7 +4543,8 @@ function PMA_createViewDialog ($this) { var $msg = PMA_ajaxShowMessage(); var syntaxHighlighter = null; var sep = PMA_commonParams.get('arg_separator'); - $.get($this.attr('href') + sep + 'ajax_request=1' + sep + 'ajax_dialog=1', function (data) { + params = $this.getPostData(); + $.get($this.attr('href') + sep + 'ajax_request=1' + sep + 'ajax_dialog=1' + sep + params, function (data) { if (typeof data !== 'undefined' && data.success === true) { PMA_ajaxRemoveMessage($msg); var buttonOptions = {}; @@ -4700,18 +4701,20 @@ $(document).on('keyup', '#filterText', function () { var count = 0; $('[data-filter-row]').each(function () { var $row = $(this); - console.log($row); /* Can not use data() here as it does magic conversion to int for numeric values */ if ($row.attr('data-filter-row').indexOf(filterInput) > -1) { count += 1; $row.show(); - $row.find('input.checkall').removeClass('row-hidden').trigger('change'); + $row.find('input.checkall').removeClass('row-hidden'); } else { $row.hide(); - $row.find('input.checkall').addClass('row-hidden').prop('checked', false).trigger('change'); + $row.find('input.checkall').addClass('row-hidden').prop('checked', false); $row.removeClass('marked'); } }); + setTimeout(function () { + $(checkboxes_sel).trigger('change'); + }, 300); $('#filter-rows-count').html(count); }); AJAX.registerOnload('functions.js', function () { @@ -4940,7 +4943,7 @@ AJAX.registerOnload('functions.js', function () { * .attr(name, value) - Sets a particular attribute of the IMG * tag to the given value */ -function PMA_getImage(image, alternate, attributes) { +function PMA_getImage (image, alternate, attributes) { // custom image object, it will eventually be returned by this functions var retval = { data: { @@ -5020,18 +5023,17 @@ function PMA_getImage(image, alternate, attributes) { * @param {object} value Configuration value. * @param {boolean} only_local Configuration type. */ -function configSet(key, value, only_local) -{ +function configSet (key, value, only_local) { only_local = (typeof only_local !== 'undefined') ? only_local : false; var serialized = JSON.stringify(value); localStorage.setItem(key, serialized); $.ajax({ - url: "ajax.php", - type: "POST", - dataType: "json", + url: 'ajax.php', + type: 'POST', + dataType: 'json', data: { key: key, - type: "config-set", + type: 'config-set', server: PMA_commonParams.get('server'), value: serialized, }, @@ -5058,8 +5060,7 @@ function configSet(key, value, only_local) * * @return {object} Configuration value. */ -function configGet(key, cached) -{ +function configGet (key, cached) { cached = (typeof cached !== 'undefined') ? cached : true; var value = localStorage.getItem(key); if (cached && value !== undefined && value !== null) { @@ -5073,11 +5074,11 @@ function configGet(key, cached) // processing cannot continue until that value is found. // Another solution is to provide a callback as a parameter. async: false, - url: "ajax.php", - type: "POST", - dataType: "json", + url: 'ajax.php', + type: 'POST', + dataType: 'json', data: { - type: "config-get", + type: 'config-get', server: PMA_commonParams.get('server'), key: key }, @@ -5097,7 +5098,7 @@ function configGet(key, cached) /** * Return POST data as stored by Util::linkOrButton */ -jQuery.fn.getPostData = function() { +jQuery.fn.getPostData = function () { var dataPost = this.attr('data-post'); // Strip possible leading ? if (dataPost !== undefined && dataPost.substring(0,1) == '?') { diff --git a/js/server_variables.js b/js/server_variables.js index af4812acf6..6b7f01faf1 100644 --- a/js/server_variables.js +++ b/js/server_variables.js @@ -14,7 +14,7 @@ AJAX.registerOnload('server_variables.js', function () { var $cancelLink = $('a.cancelLink'); $('#serverVariables').find('.var-name').find('a').append( - $('#docImage').clone().show() + $('#docImage').clone().css('display', 'inline-block') ); /* Launches the variable editor */ @@ -29,11 +29,11 @@ AJAX.registerOnload('server_variables.js', function () { var $cell = $link.parent(); var $valueCell = $link.parents('.var-row').find('.var-value'); var varName = $link.data('variable'); - var $mySaveLink = $saveLink.clone().show(); - var $myCancelLink = $cancelLink.clone().show(); + + var $mySaveLink = $saveLink.clone().css('display', 'inline-block'); + var $myCancelLink = $cancelLink.clone().css('display', 'inline-block'); var $msgbox = PMA_ajaxShowMessage(); var $myEditLink = $cell.find('a.editLink'); - $cell.addClass('edit'); // variable is being edited $myEditLink.remove(); // remove edit link @@ -87,7 +87,9 @@ AJAX.registerOnload('server_variables.js', function () { ); // Save and replace content $cell - .html($links); + .html($links) + .children() + .css('display', 'flex'); $valueCell .data('content', $valueCell.html()) .html($editor) diff --git a/js/tbl_structure.js b/js/tbl_structure.js index bb26f3b8bb..42b4f9ac4e 100644 --- a/js/tbl_structure.js +++ b/js/tbl_structure.js @@ -421,10 +421,7 @@ AJAX.registerOnload('tbl_structure.js', function () { var $link = $(this); function submitPartitionAction (url) { - var params = { - 'ajax_request' : true, - 'ajax_page_request' : true - }; + var params = 'ajax_request=true&ajax_page_request=true&' + $link.getPostData(); PMA_ajaxShowMessage(); AJAX.source = $link; $.post(url, params, AJAX.responseHandler); diff --git a/libraries/classes/Config.php b/libraries/classes/Config.php index 0c8d6642b0..41758bd5e9 100644 --- a/libraries/classes/Config.php +++ b/libraries/classes/Config.php @@ -116,7 +116,7 @@ class Config */ public function checkSystem() { - $this->set('PMA_VERSION', '4.8.2'); + $this->set('PMA_VERSION', '4.8.3'); /* Major version */ $this->set( 'PMA_MAJOR_VERSION', diff --git a/libraries/classes/Config/FormDisplay.php b/libraries/classes/Config/FormDisplay.php index 9cc114da6e..4bfc82d316 100644 --- a/libraries/classes/Config/FormDisplay.php +++ b/libraries/classes/Config/FormDisplay.php @@ -655,7 +655,8 @@ class FormDisplay if (! $successfully_validated) { $this->_errors[$work_path][] = __('Incorrect value!'); $result = false; - continue; + // "continue" for the $form->fields foreach-loop + continue 2; } break; case 'string': diff --git a/libraries/classes/Controllers/Server/ServerDatabasesController.php b/libraries/classes/Controllers/Server/ServerDatabasesController.php index 800f714339..67128347a5 100644 --- a/libraries/classes/Controllers/Server/ServerDatabasesController.php +++ b/libraries/classes/Controllers/Server/ServerDatabasesController.php @@ -72,7 +72,7 @@ class ServerDatabasesController extends Controller include_once 'libraries/replication.inc.php'; - if (! empty($_POST['new_db']) + if (isset($_POST['new_db']) && $response->isAjax() ) { $this->createDatabaseAction(); diff --git a/libraries/classes/DatabaseInterface.php b/libraries/classes/DatabaseInterface.php index 36695978ba..095545020f 100644 --- a/libraries/classes/DatabaseInterface.php +++ b/libraries/classes/DatabaseInterface.php @@ -876,7 +876,7 @@ class DatabaseInterface AS SCHEMA_DATA_FREE'; } $sql .= ' - FROM `information_schema`.SCHEMATA s'; + FROM `information_schema`.SCHEMATA s '; if ($force_stats) { $sql .= ' LEFT JOIN `information_schema`.TABLES t diff --git a/libraries/classes/Display/Results.php b/libraries/classes/Display/Results.php index 84c8c3f7d9..2d815eff8e 100644 --- a/libraries/classes/Display/Results.php +++ b/libraries/classes/Display/Results.php @@ -5019,7 +5019,9 @@ class Results 'tbl_gis_visualization.php' . Url::getCommon($_url_params), Util::getIcon( - 'b_globe.gif', __('Visualize GIS data'), true + 'b_globe', + __('Visualize GIS data'), + true ) ) . "\n"; diff --git a/libraries/classes/Export.php b/libraries/classes/Export.php index 1f48b5f0c9..c250be0e73 100644 --- a/libraries/classes/Export.php +++ b/libraries/classes/Export.php @@ -520,11 +520,11 @@ class Export foreach($_POST as $name => $value) { if (is_array($value)) { foreach($value as $val) { - $refreshButton .= ''; + $refreshButton .= ''; } } else { - $refreshButton .= ''; + $refreshButton .= ''; } } $refreshButton .= ''; diff --git a/libraries/classes/Header.php b/libraries/classes/Header.php index d5bfb98b68..f989d85235 100644 --- a/libraries/classes/Header.php +++ b/libraries/classes/Header.php @@ -474,7 +474,7 @@ class Header $retval .= '
'; $retval .= $this->getMessage(); } - if ($this->_isEnabled && isset($_REQUEST['recent_table']) && strlen($_REQUEST['recent_table'])) { + if ($this->_isEnabled && empty($_REQUEST['recent_table'])) { $retval .= $this->_addRecentTable( $GLOBALS['db'], $GLOBALS['table'] diff --git a/libraries/classes/MultSubmits.php b/libraries/classes/MultSubmits.php index 915ef9766d..fb694a28b7 100644 --- a/libraries/classes/MultSubmits.php +++ b/libraries/classes/MultSubmits.php @@ -401,7 +401,7 @@ class MultSubmits $html .= '
'; $html .= ''; $html .= '

'; - $html .= ''; + $html .= ''; $html .= '
'; $html .= ''; $html .= '
'; diff --git a/libraries/classes/Navigation/Navigation.php b/libraries/classes/Navigation/Navigation.php index c4a297bee6..146860f6b1 100644 --- a/libraries/classes/Navigation/Navigation.php +++ b/libraries/classes/Navigation/Navigation.php @@ -233,8 +233,8 @@ class Navigation $html .= '' - . Util::getIcon('show.png', __('Show')) - . ''; + . Util::getIcon('show', __('Show')) + . ''; } $html .= ''; $first = false; diff --git a/libraries/classes/Plugins/TwoFactor/Application.php b/libraries/classes/Plugins/TwoFactor/Application.php index 3056af3e46..c739b98080 100644 --- a/libraries/classes/Plugins/TwoFactor/Application.php +++ b/libraries/classes/Plugins/TwoFactor/Application.php @@ -91,15 +91,30 @@ class Application extends TwoFactorPlugin public function setup() { $secret = $this->_twofactor->config['settings']['secret']; - $inlineUrl = $this->_google2fa->getQRCodeInline( - 'phpMyAdmin (' . $this->getAppId(false) . ')', - $this->_twofactor->user, - $secret - ); - return Template::get('login/twofactor/application_configure')->render([ - 'image' => $inlineUrl, - 'secret' => $secret - ]); + $renderArray = ['secret' => $secret]; + if (extension_loaded('gd')) { + $inlineUrl = $this->_google2fa->getQRCodeInline( + 'phpMyAdmin (' . $this->getAppId(false) . ')', + $this->_twofactor->user, + $secret + ); + $renderArray['image'] = $inlineUrl; + } else { + $inlineUrl = $this->_google2fa->getQRCodeUrl( + 'phpMyAdmin (' . $this->getAppId(false) . ')', + $this->_twofactor->user, + $secret + ); + trigger_error( + __( + 'The gd PHP extension was not found.' + . ' The QRcode can not be displayed without the gd PHP extension.' + ), + E_USER_WARNING + ); + $renderArray['url'] = $inlineUrl; + } + return Template::get('login/twofactor/application_configure')->render($renderArray); } /** diff --git a/libraries/classes/Rte/Events.php b/libraries/classes/Rte/Events.php index c47ca5f104..3f10c638c2 100644 --- a/libraries/classes/Rte/Events.php +++ b/libraries/classes/Rte/Events.php @@ -123,7 +123,7 @@ class Events htmlspecialchars($drop_item) ) . '
' - . __('MySQL said: ') . $GLOBALS['dbi']->getError(null); + . __('MySQL said: ') . $GLOBALS['dbi']->getError(); } else { $result = $GLOBALS['dbi']->tryQuery($item_query); if (! $result) { @@ -132,7 +132,7 @@ class Events htmlspecialchars($item_query) ) . '
' - . __('MySQL said: ') . $GLOBALS['dbi']->getError(null); + . __('MySQL said: ') . $GLOBALS['dbi']->getError(); // We dropped the old item, but were unable to create // the new one. Try to restore the backup query $result = $GLOBALS['dbi']->tryQuery($create_item); @@ -163,7 +163,7 @@ class Events htmlspecialchars($item_query) ) . '

' - . __('MySQL said: ') . $GLOBALS['dbi']->getError(null); + . __('MySQL said: ') . $GLOBALS['dbi']->getError(); } else { $message = Message::success( __('Event %1$s has been created.') diff --git a/libraries/classes/Rte/Footer.php b/libraries/classes/Rte/Footer.php index 43dbb8b63c..2fdb2583df 100644 --- a/libraries/classes/Rte/Footer.php +++ b/libraries/classes/Rte/Footer.php @@ -30,7 +30,7 @@ class Footer { global $db, $table, $url_query; - $icon = mb_strtolower($name) . '_add.png'; + $icon = mb_strtolower($name) . '_add'; $retval = ""; $retval .= "\n"; $retval .= "
\n"; diff --git a/libraries/classes/Rte/General.php b/libraries/classes/Rte/General.php index ffd05c0bf8..9b13380dc6 100644 --- a/libraries/classes/Rte/General.php +++ b/libraries/classes/Rte/General.php @@ -45,7 +45,7 @@ class General $errors[] = $error . '
' . __('The backed up query was:') . "\"" . htmlspecialchars($createStatement) . "\"" . '
' - . __('MySQL said: ') . $GLOBALS['dbi']->getError(null); + . __('MySQL said: ') . $GLOBALS['dbi']->getError(); return $errors; } diff --git a/libraries/classes/Rte/Routines.php b/libraries/classes/Rte/Routines.php index 62ef51cfa7..3bfca689de 100644 --- a/libraries/classes/Rte/Routines.php +++ b/libraries/classes/Rte/Routines.php @@ -241,7 +241,7 @@ class Routines htmlspecialchars($drop_routine) ) . '
' - . __('MySQL said: ') . $GLOBALS['dbi']->getError(null); + . __('MySQL said: ') . $GLOBALS['dbi']->getError(); } else { list($newErrors, $message) = self::create( $routine_query, @@ -268,7 +268,7 @@ class Routines htmlspecialchars($routine_query) ) . '

' - . __('MySQL said: ') . $GLOBALS['dbi']->getError(null); + . __('MySQL said: ') . $GLOBALS['dbi']->getError(); } else { $message = Message::success( __('Routine %1$s has been created.') @@ -382,7 +382,7 @@ class Routines htmlspecialchars($routine_query) ) . '
' - . __('MySQL said: ') . $GLOBALS['dbi']->getError(null); + . __('MySQL said: ') . $GLOBALS['dbi']->getError(); // We dropped the old routine, // but were unable to create the new one // Try to restore the backup query @@ -1495,7 +1495,7 @@ class Routines htmlspecialchars($multiple_query) ) . '

' - . __('MySQL said: ') . $GLOBALS['dbi']->getError(null) + . __('MySQL said: ') . $GLOBALS['dbi']->getError() ); } diff --git a/libraries/classes/Rte/Triggers.php b/libraries/classes/Rte/Triggers.php index 2edd2806bf..7f025affd1 100644 --- a/libraries/classes/Rte/Triggers.php +++ b/libraries/classes/Rte/Triggers.php @@ -98,7 +98,7 @@ class Triggers htmlspecialchars($drop_item) ) . '
' - . __('MySQL said: ') . $GLOBALS['dbi']->getError(null); + . __('MySQL said: ') . $GLOBALS['dbi']->getError(); } else { $result = $GLOBALS['dbi']->tryQuery($item_query); if (! $result) { @@ -107,7 +107,7 @@ class Triggers htmlspecialchars($item_query) ) . '
' - . __('MySQL said: ') . $GLOBALS['dbi']->getError(null); + . __('MySQL said: ') . $GLOBALS['dbi']->getError(); // We dropped the old item, but were unable to create the // new one. Try to restore the backup query. $result = $GLOBALS['dbi']->tryQuery($create_item); @@ -139,7 +139,7 @@ class Triggers htmlspecialchars($item_query) ) . '

' - . __('MySQL said: ') . $GLOBALS['dbi']->getError(null); + . __('MySQL said: ') . $GLOBALS['dbi']->getError(); } else { $message = Message::success( __('Trigger %1$s has been created.') diff --git a/libraries/classes/Sql.php b/libraries/classes/Sql.php index 0933446fd3..9515122db9 100644 --- a/libraries/classes/Sql.php +++ b/libraries/classes/Sql.php @@ -2257,7 +2257,7 @@ EOT; Util::handleDisableFKCheckCleanup($default_fk_check); foreach ($warning_messages as $warning) { - $message = Message::notice($warning); + $message = Message::notice(Message::sanitize($warning)); $html_output .= $message->getDisplay(); } diff --git a/libraries/classes/Table.php b/libraries/classes/Table.php index 3e9e32ca95..b0878c1308 100644 --- a/libraries/classes/Table.php +++ b/libraries/classes/Table.php @@ -365,7 +365,7 @@ class Table * @return string Return comment info if it is set for the selected table or return blank. */ public function getComment() { - $table_comment = $this->getStatusInfo('COMMENT', false, true); + $table_comment = $this->getStatusInfo('TABLE_COMMENT', false, true); if ($table_comment === false) { return ''; } diff --git a/package.json b/package.json index 4304b9ff0c..6c4bbdb3d5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "phpmyadmin", - "version": "4.8.0-dev", + "version": "4.8.3", "description": "A web interface for MySQL and MariaDB", "repository": "https://github.com/phpmyadmin/phpmyadmin.git", "author": "The phpMyAdmin Team (https://www.phpmyadmin.net/team/)", diff --git a/po/cs.po b/po/cs.po index 72b6d6638a..41e1841187 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.8.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2018-02-12 16:30+0100\n" -"PO-Revision-Date: 2018-05-24 22:35+0000\n" +"PO-Revision-Date: 2018-07-23 11:06+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Czech " "\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 3.0-dev\n" +"X-Generator: Weblate 3.1-dev\n" #: ajax.php:21 ajax.php:50 export.php:203 libraries/classes/Export.php:1100 msgid "Bad type!" @@ -1756,6 +1756,8 @@ msgid "" "It seems that the connection to server has been lost. Please check your " "network connectivity and server status." msgstr "" +"Připojení k serveru bylo ztraceno. Prosím, zkontrolujte Vaše síťové " +"připojení a stav serveru." #: js/messages.php:369 #: libraries/classes/Controllers/Server/ServerDatabasesController.php:188 @@ -2670,12 +2672,12 @@ msgstr "Silné" #: js/messages.php:746 msgid "Timed out waiting for security key activation." -msgstr "" +msgstr "Vypršel čas pro aktivaci bezpečnostního klíče." #: js/messages.php:747 #, php-format msgid "Failed security key activation (%s)." -msgstr "" +msgstr "Selhala aktivace bezpečnostního klíče (%s)." #: js/messages.php:776 msgctxt "Previous month" @@ -3458,7 +3460,7 @@ msgstr "Islandština" #: libraries/classes/Charsets.php:491 msgctxt "Collation" msgid "Classical Latin" -msgstr "" +msgstr "Latina (klasická)" #: libraries/classes/Charsets.php:495 #, fuzzy @@ -3521,7 +3523,7 @@ msgstr "Španělština" #: libraries/classes/Charsets.php:543 libraries/classes/Charsets.php:593 msgctxt "Collation" msgid "Spanish (traditional)" -msgstr "" +msgstr "Španělština (tradiční)" #: libraries/classes/Charsets.php:562 #, fuzzy @@ -7112,7 +7114,7 @@ msgstr "Server neodpovídá." #: libraries/classes/DatabaseInterface.php:2131 msgid "Logout and try as another user." -msgstr "" +msgstr "Odhlásit se a zkusit přihlásit se jako jiný uživatel." #: libraries/classes/DatabaseInterface.php:2137 msgid "Please check privileges of directory containing database." @@ -7167,7 +7169,7 @@ msgstr "Heslo:" #: libraries/classes/Display/ChangePassword.php:79 msgid "Enter:" -msgstr "" +msgstr "Vložit:" #: libraries/classes/Display/ChangePassword.php:86 #: libraries/classes/ReplicationGui.php:878 @@ -7216,7 +7218,7 @@ msgstr "" #: libraries/classes/Display/Export.php:558 msgid "Defined aliases" -msgstr "" +msgstr "Definované aliasy" #: libraries/classes/Display/Export.php:614 #: templates/display/export/options_output.twig:7 @@ -8140,7 +8142,7 @@ msgstr "Pohled" #: libraries/classes/Menu.php:290 libraries/classes/Menu.php:309 #, php-format msgid "“%s”" -msgstr "" +msgstr "„%s“" #: libraries/classes/Menu.php:344 #: libraries/classes/Navigation/Nodes/NodeTable.php:300 @@ -9201,6 +9203,8 @@ msgstr "Nepodařilo se přihlášení k MySQL serveru" #: libraries/classes/Plugins/AuthenticationPlugin.php:335 msgid "You have enabled two factor authentication, please confirm your login." msgstr "" +"Aktivovali jste dvoustupňové ověřování. Potvrďte, prosím, své přihlašovací " +"údaje." #: libraries/classes/Plugins/Export/ExportCodegen.php:101 #: templates/display/import/import.twig:168 @@ -9719,7 +9723,7 @@ msgstr "Tabulka:" #: libraries/classes/Plugins/Export/Helpers/Pdf.php:120 msgid "Purpose:" -msgstr "" +msgstr "Účel:" #: libraries/classes/Plugins/Export/Helpers/Pdf.php:501 msgid "MIME" diff --git a/po/de.po b/po/de.po index a4108416c9..6544fa3c19 100644 --- a/po/de.po +++ b/po/de.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2018-02-12 16:30+0100\n" -"PO-Revision-Date: 2018-04-29 13:54+0000\n" -"Last-Translator: ssantos \n" +"PO-Revision-Date: 2018-08-15 04:10+0000\n" +"Last-Translator: BO41 \n" "Language-Team: German \n" "Language: de\n" @@ -13,7 +13,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.0-dev\n" +"X-Generator: Weblate 3.2-dev\n" #: ajax.php:21 ajax.php:50 export.php:203 libraries/classes/Export.php:1100 msgid "Bad type!" diff --git a/po/es.po b/po/es.po index 9dea188e15..10066e0d92 100644 --- a/po/es.po +++ b/po/es.po @@ -4,16 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.8.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2018-02-12 16:30+0100\n" -"PO-Revision-Date: 2018-01-08 13:02+0000\n" -"Last-Translator: Guillermo Lengemann \n" -"Language-Team: Spanish \n" +"PO-Revision-Date: 2018-07-22 06:41+0000\n" +"Last-Translator: Jon Echeve \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.19-dev\n" +"X-Generator: Weblate 3.1-dev\n" #: ajax.php:21 ajax.php:50 export.php:203 libraries/classes/Export.php:1100 msgid "Bad type!" @@ -9222,6 +9222,8 @@ msgstr "El servidor MySQL no autorizó su acceso" #: libraries/classes/Plugins/AuthenticationPlugin.php:335 msgid "You have enabled two factor authentication, please confirm your login." msgstr "" +"Ha habilitado la autenticación de dos factores, confirme su inicio de sesión " +"por favor." #: libraries/classes/Plugins/Export/ExportCodegen.php:101 #: templates/display/import/import.twig:168 diff --git a/po/et.po b/po/et.po index 97c8790a0d..85aa9c7861 100644 --- a/po/et.po +++ b/po/et.po @@ -6,16 +6,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.8.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2018-02-12 16:30+0100\n" -"PO-Revision-Date: 2018-01-26 16:40+0000\n" +"PO-Revision-Date: 2018-08-17 19:36+0000\n" "Last-Translator: Kristjan Räts \n" -"Language-Team: Estonian \n" +"Language-Team: Estonian \n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.19-dev\n" +"X-Generator: Weblate 3.2-dev\n" #: ajax.php:21 ajax.php:50 export.php:203 libraries/classes/Export.php:1100 msgid "Bad type!" @@ -14831,7 +14831,7 @@ msgstr "Muuda partitsioneerimist" #: templates/table/structure/display_structure.twig:191 #: templates/table/structure/display_partitions.twig:4 msgid "Partitions" -msgstr "Partitsioonid" +msgstr "Jaotised" #: templates/encoding/kanji_encoding_form.twig:6 msgctxt "None encoding conversion" diff --git a/po/fr.po b/po/fr.po index e00b742b2d..dddd943865 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2018-02-12 16:30+0100\n" -"PO-Revision-Date: 2018-04-14 22:37+0000\n" -"Last-Translator: anonymous <>\n" +"PO-Revision-Date: 2018-07-08 23:37+0000\n" +"Last-Translator: Olivier Humbert \n" "Language-Team: French \n" "Language: fr\n" @@ -13,7 +13,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.0-dev\n" +"X-Generator: Weblate 3.1-dev\n" #: ajax.php:21 ajax.php:50 export.php:203 libraries/classes/Export.php:1100 msgid "Bad type!" @@ -10049,7 +10049,7 @@ msgid "" "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" "Affiche une représentation hexadécimale des données. Le premier paramètre " -"est optionnel et spécifie à quel intervalle un espace sera ajouté (par " +"est optionnel et spécifie à quel intervalle une espace sera ajoutée (par " "défaut, à chaque 2 « nibbles »)." #: libraries/classes/Plugins/Transformations/Abs/ImageLinkTransformationsPlugin.php:32 diff --git a/po/he.po b/po/he.po index 0ccf3d2e6d..121d857d09 100644 --- a/po/he.po +++ b/po/he.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.8.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2018-02-12 16:30+0100\n" -"PO-Revision-Date: 2018-06-15 13:38+0000\n" +"PO-Revision-Date: 2018-07-26 11:48+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew \n" @@ -13,7 +13,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Weblate 3.0.1\n" +"X-Generator: Weblate 3.1-dev\n" #: ajax.php:21 ajax.php:50 export.php:203 libraries/classes/Export.php:1100 msgid "Bad type!" @@ -9766,7 +9766,7 @@ msgstr "שינויי צורה זמינים" #: libraries/classes/Relation.php:208 msgid "Please see the documentation on how to update your column_info table." -msgstr "" +msgstr "נא לעיין בתיעוד על אופן עדכון טבלת ה־column_info שלך." #: libraries/classes/Relation.php:224 libraries/classes/SqlQueryForm.php:401 msgid "Bookmarked SQL query" @@ -9792,17 +9792,15 @@ msgstr "" #: libraries/classes/Relation.php:290 msgid "User preferences" -msgstr "" +msgstr "העדפות משתמש" #: libraries/classes/Relation.php:307 -#, fuzzy -#| msgid "Modifications have been saved" msgid "Configurable menus" -msgstr "שינויים נשמרו" +msgstr "תפריטים שניתן להגדיר" #: libraries/classes/Relation.php:318 msgid "Hide/show navigation items" -msgstr "" +msgstr "הסתרה/הצגה של פריטי ניווט" #: libraries/classes/Relation.php:329 msgid "Saving Query-By-Example searches" @@ -9810,7 +9808,7 @@ msgstr "" #: libraries/classes/Relation.php:340 msgid "Managing Central list of columns" -msgstr "" +msgstr "ניהול רשימה מרכזית של עמודות" #: libraries/classes/Relation.php:351 #, fuzzy @@ -9826,16 +9824,16 @@ msgstr "סוג הייצוא שגוי" #: libraries/classes/Relation.php:370 msgid "Quick steps to set up advanced features:" -msgstr "" +msgstr "צעדים מהירים להגדרת תכונות מתקדמות:" #: libraries/classes/Relation.php:376 #, php-format msgid "Create the needed tables with the %screate_tables.sql." -msgstr "" +msgstr "יצירת הטבלאות הנחוצות עם %screate_tables.sql." #: libraries/classes/Relation.php:381 msgid "Create a pma user and give access to these tables." -msgstr "" +msgstr "יצירת משתמש pma והענקת גישה לטבלאות האלה." #: libraries/classes/Relation.php:384 msgid "" @@ -9845,7 +9843,7 @@ msgstr "" #: libraries/classes/Relation.php:389 msgid "Re-login to phpMyAdmin to load the updated configuration file." -msgstr "" +msgstr "כניסה מחדש ל־phpMyAdmin כדי לטעון את קובץ התצורה המעודכן." #: libraries/classes/Relation.php:1704 msgid "no description" @@ -9863,13 +9861,13 @@ msgstr "" msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." -msgstr "" +msgstr "%sיצירת%s מסד נתונים בשם ‚phpmyadmin’ והגדרת האחסון של phpMyAdmin שם." #: libraries/classes/Relation.php:2018 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." -msgstr "" +msgstr "%sיצירת%s אחסון התצורה של phpMyAdmin במסד הנתונים הנוכחי." #: libraries/classes/Relation.php:2026 #, php-format @@ -10361,32 +10359,30 @@ msgstr "" #: libraries/classes/Rte/Events.php:624 msgid "You must provide an event definition." -msgstr "" +msgstr "עליך לציין הגדרת אירוע." #: libraries/classes/Rte/Export.php:54 libraries/classes/Rte/General.php:84 #: libraries/classes/Rte/Routines.php:172 #: libraries/classes/Rte/Routines.php:1329 #: libraries/classes/Rte/Routines.php:1539 -#, fuzzy -#| msgid "Processes" msgid "Error in processing request:" -msgstr "תהליכים" +msgstr "שגיאה בעיבוד הבקשה:" #: libraries/classes/Rte/Footer.php:102 msgid "OFF" -msgstr "" +msgstr "כבוי" #: libraries/classes/Rte/Footer.php:107 msgid "ON" -msgstr "" +msgstr "פעיל" #: libraries/classes/Rte/Footer.php:119 msgid "Event scheduler status" -msgstr "" +msgstr "מצב מתזמן אירועים" #: libraries/classes/Rte/General.php:46 msgid "The backed up query was:" -msgstr "" +msgstr "השאילתה שגובתה היא:" #: libraries/classes/Rte/Routines.php:92 msgid "" @@ -16904,6 +16900,9 @@ msgid "" "writers for a given table. See also MySQL Documentation" msgstr "" +"הגדרת {concurrent_insert} ל־1 מקטינה את המחלוקת בין הקוראים והכותבים לטבלה " +"מסוימת. ניתן גם לעיין בתיעוד של MySQL" #: libraries/advisory_rules.txt:446 msgid "concurrent_insert is set to 0" diff --git a/po/hr.po b/po/hr.po index 3cffbe7741..49dca3372f 100644 --- a/po/hr.po +++ b/po/hr.po @@ -4,17 +4,17 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.8.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2018-02-12 16:30+0100\n" -"PO-Revision-Date: 2018-03-23 05:43+0000\n" +"PO-Revision-Date: 2018-07-03 23:16+0000\n" "Last-Translator: Marino \n" -"Language-Team: Croatian \n" +"Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" "4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 2.20-dev\n" +"X-Generator: Weblate 3.1-dev\n" #: ajax.php:21 ajax.php:50 export.php:203 libraries/classes/Export.php:1100 msgid "Bad type!" @@ -26,12 +26,12 @@ msgid "" "The %s file is not available on this system, please visit %s for more " "information." msgstr "" -"Datoteka %s nije dostupna na na ovom sistemu, molimo posjetite " -"www.phpmyadmin.net%s za više informacija." +"Datoteka %s nije dostupna na ovom sistemu, molimo posjetite %s za više " +"informacija." #: db_central_columns.php:127 msgid "The central list of columns for the current database is empty." -msgstr "" +msgstr "Središnji popis stupaca za trenutnu bazu podataka je prazan" #: db_central_columns.php:156 #, fuzzy @@ -315,6 +315,8 @@ msgstr "Naziv baze podataka je prazan!" #: db_operations.php:67 msgid "Cannot copy database to the same name. Change the name and try again." msgstr "" +"Nije moguće kopirati bazu podataka jednakog naziva. Promijenite naziv i " +"pokušajte ponovo." #: db_operations.php:154 #, fuzzy, php-format @@ -323,10 +325,9 @@ msgid "Database %1$s has been renamed to %2$s." msgstr "Baza podataka %1$s preimenovana je u %2$s" #: db_operations.php:166 -#, fuzzy, php-format -#| msgid "Database %s has been copied to %s." +#, php-format msgid "Database %1$s has been copied to %2$s." -msgstr "Baza podataka %s kopirana je u %s" +msgstr "Baza podataka %1$s je kopirana u %2$s" #: db_operations.php:294 #, fuzzy, php-format @@ -340,10 +341,8 @@ msgstr "" "razloge, kliknite %sovdje%s." #: db_qbe.php:130 -#, fuzzy -#| msgid "You have to choose at least one column to display" msgid "You have to choose at least one column to display!" -msgstr "Morate odabrati najmanje jedan stupac za prikazivanje" +msgstr "Morate odabrati najmanje jedan stupac za prikazivanje!" #: db_qbe.php:148 #, php-format diff --git a/po/lt.po b/po/lt.po index 794b31ff99..209a7eb354 100644 --- a/po/lt.po +++ b/po/lt.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.8.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2018-02-12 16:30+0100\n" -"PO-Revision-Date: 2018-02-01 13:38+0000\n" -"Last-Translator: Edgaras Janušauskas \n" +"PO-Revision-Date: 2018-07-23 11:06+0000\n" +"Last-Translator: Michal Čihař \n" "Language-Team: Lithuanian \n" +"4-8/lt/>\n" "Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > " "19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? " "1 : 2);\n" -"X-Generator: Weblate 2.19-dev\n" +"X-Generator: Weblate 3.1-dev\n" #: ajax.php:21 ajax.php:50 export.php:203 libraries/classes/Export.php:1100 msgid "Bad type!" @@ -585,13 +585,12 @@ msgid "Bookmark %s has been created." msgstr "Žymė %s sukurta." #: import.php:595 -#, fuzzy, php-format +#, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." -msgstr[0] "Importavimas sėkmingai baigtas, įvykdyta %d užklausa." -msgstr[1] "Importavimas sėkmingai baigtas, įvykdyta %d užklausos." -msgstr[2] "Importavimas sėkmingai baigtas, įvykdyta %d užklausų." -msgstr[3] "" +msgstr[0] "Importavimas sėkmingai baigtas, užklausa %d įvykdyta." +msgstr[1] "Importavimas sėkmingai baigtas, užklausos %d įvykdytos." +msgstr[2] "Importavimas sėkmingai baigtas, iš viso įvykdyta %d užklausų." #: import.php:626 #, php-format @@ -617,7 +616,7 @@ msgstr "„DROP DATABASE“ komandos įvykdyti negalima." #: import_status.php:107 msgid "Could not load the progress of the import." -msgstr "" +msgstr "Nepavyko įkelti importo ." #: import_status.php:116 js/messages.php:457 js/messages.php:622 #: libraries/classes/Export.php:514 @@ -631,13 +630,13 @@ msgid "" "You were logged out from one server, to logout completely from phpMyAdmin, " "you need to logout from all servers." msgstr "" +"Jūs atsijungėte iš vieno serverio, kad visiškai išeitumėte iš phpMyAdmin, " +"turite atsijungti iš visų serverių." #: index.php:193 libraries/classes/Footer.php:75 #: libraries/classes/Plugins/Auth/AuthenticationCookie.php:115 -#, fuzzy -#| msgid "phpMyAdmin homepage" msgid "phpMyAdmin Demo Server" -msgstr "phpMyAdmin tinklalapis" +msgstr "phpMyAdmin Demonstracinis Serveris" #: index.php:197 libraries/classes/Plugins/Auth/AuthenticationCookie.php:118 #, php-format @@ -646,6 +645,9 @@ msgid "" "change root, debian-sys-maint and pma users. More information is available " "at %s." msgstr "" +"Jūs naudojate demonstracinį serverį. Čia galite daryti ką norite, bet " +"nepakeiskite admistratoriaus root, debian-sys-maint ir pma vartotojų. " +"Daugiau informacijos galima rasti čia adresu %s." #: index.php:207 msgid "General settings" @@ -679,16 +681,12 @@ msgid "Server:" msgstr "Darbinė stotis:" #: index.php:338 -#, fuzzy -#| msgid "Server port" msgid "Server type:" -msgstr "Serverio jungtis" +msgstr "Serverio tipas :" #: index.php:342 -#, fuzzy -#| msgid "Insecure connection" msgid "Server connection:" -msgstr "Nesaugus susijungimas" +msgstr "Serverio prisijungimas :" #: index.php:346 libraries/classes/Plugins/Export/ExportLatex.php:223 #: libraries/classes/Plugins/Export/ExportSql.php:704 @@ -705,10 +703,8 @@ msgid "Protocol version:" msgstr "Protokolo versija" #: index.php:356 -#, fuzzy -#| msgid "User" msgid "User:" -msgstr "Naudotojas" +msgstr "Vartotojas :" #: index.php:361 #, fuzzy @@ -774,7 +770,7 @@ msgstr "Pakeitimų sąrašas" #: index.php:482 templates/server/plugins/section.twig:13 msgid "License" -msgstr "" +msgstr "Licencija" #: index.php:502 msgid "" @@ -3367,11 +3363,11 @@ msgstr "Negalėjo išsaugoti paskiausios lentelės" #: libraries/classes/CentralColumns.php:618 msgid "YES" -msgstr "" +msgstr "Taip" #: libraries/classes/CentralColumns.php:618 msgid "NO" -msgstr "" +msgstr "Ne" #: libraries/classes/CentralColumns.php:749 #: libraries/classes/Display/Results.php:961 @@ -18045,9 +18041,8 @@ msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "Rūšiavimo buferio dydis" #: libraries/advisory_rules.txt:167 -#, fuzzy msgid "Query Cache usage" -msgstr "Užklausų saugykla" +msgstr "Užklausų pagreitinimo (kešo) naudojamumas" #: libraries/advisory_rules.txt:170 #, php-format diff --git a/po/ml.po b/po/ml.po index 1e46da2099..d7790f991a 100644 --- a/po/ml.po +++ b/po/ml.po @@ -6,16 +6,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.8.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2018-02-12 16:30+0100\n" -"PO-Revision-Date: 2016-05-24 05:48+0000\n" -"Last-Translator: GIMMY \n" -"Language-Team: Malayalam \n" +"PO-Revision-Date: 2018-07-03 23:16+0000\n" +"Last-Translator: Aswani Prakash \n" +"Language-Team: Malayalam \n" "Language: ml\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.7-dev\n" +"X-Generator: Weblate 3.1-dev\n" #: ajax.php:21 ajax.php:50 export.php:203 libraries/classes/Export.php:1100 msgid "Bad type!" @@ -27,10 +27,11 @@ msgid "" "The %s file is not available on this system, please visit %s for more " "information." msgstr "" +"%s ഫയൽ ഈ സിസ്റ്റത്തിൽ ലഭ്യമല്ല, അധികമറിയുന്നതിന് ദയവായി %s -ലേക്ക് പോവുക." #: db_central_columns.php:127 msgid "The central list of columns for the current database is empty." -msgstr "" +msgstr "നിലവിലുള്ള ഡാറ്റാബേസിലെ കോളങ്ങളുടെ കേന്ദ്ര പട്ടിക ശൂന്യമാണ്." #: db_central_columns.php:156 msgid "Click to sort." @@ -39,7 +40,7 @@ msgstr "" #: db_central_columns.php:175 #, php-format msgid "Showing rows %1$s - %2$s." -msgstr "" +msgstr "പ്രദർശിപ്പിച്ചിരിക്കുന്ന റോ-കൾ %1$s - %2$s." #: db_datadict.php:59 libraries/classes/Operations.php:47 msgid "Database comment" @@ -184,7 +185,7 @@ msgstr "അഭിപ്രായങ്ങൾ" #: templates/columns_definitions/column_indexes.twig:4 #: templates/table/tracking/structure_snapshot_columns.twig:25 msgid "Primary" -msgstr "" +msgstr "പ്രാഥമികം" #: db_datadict.php:164 js/messages.php:380 #: libraries/classes/CentralColumns.php:1051 diff --git a/po/pt.po b/po/pt.po index 91857017a2..0f8d443143 100644 --- a/po/pt.po +++ b/po/pt.po @@ -4,16 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.8.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2018-02-12 16:30+0100\n" -"PO-Revision-Date: 2018-03-18 15:40+0000\n" -"Last-Translator: Nuno Marques \n" +"PO-Revision-Date: 2018-07-23 11:06+0000\n" +"Last-Translator: Michal Čihař \n" "Language-Team: Portuguese \n" +"4-8/pt/>\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 2.20-dev\n" +"X-Generator: Weblate 3.1-dev\n" #: ajax.php:21 ajax.php:50 export.php:203 libraries/classes/Export.php:1100 msgid "Bad type!" @@ -3713,10 +3713,8 @@ msgstr "" "CodeMirror seja ativado." #: libraries/classes/Config/Descriptions.php:127 -#, fuzzy -#| msgid "Enable SQL Validator" msgid "Enable linter" -msgstr "Activar SQL Validator" +msgstr "Activar Validador de SQL" #: libraries/classes/Config/Descriptions.php:130 msgid "" @@ -3840,10 +3838,8 @@ msgid "Whether the table structure actions should be hidden." msgstr "Se as acções da estrutura da tabela devem ser escondidas." #: libraries/classes/Config/Descriptions.php:189 -#, fuzzy -#| msgid "Table comments" msgid "Show column comments" -msgstr "Comentários da tabela" +msgstr "Mostrar comentários da coluna" #: libraries/classes/Config/Descriptions.php:191 msgid "Whether column comments should be shown in table structure view" @@ -3874,54 +3870,41 @@ msgid "" "Values for options list for default transformations. These will be " "overwritten if transformation is filled in at table structure page." msgstr "" +"Valores para a lista de opções de transformações padrão. Estas serão " +"substituídas se a transformação for preenchida na pagina da estrutura da " +"tabela." #: libraries/classes/Config/Descriptions.php:199 -#, fuzzy -#| msgid "Transformation options" msgid "Default transformations for Substring" -msgstr "Opções de tranformação" +msgstr "Transformações para Substrings padrão" #: libraries/classes/Config/Descriptions.php:203 -#, fuzzy -#| msgid "Default sorting order" msgid "Default transformations for Bool2Text" -msgstr "Ordenação padrão" +msgstr "Transformações para Bool2Text padrão" #: libraries/classes/Config/Descriptions.php:207 -#, fuzzy -#| msgid "Default sorting order" msgid "Default transformations for External" -msgstr "Ordenação padrão" +msgstr "Transformações para External padrão" #: libraries/classes/Config/Descriptions.php:211 -#, fuzzy -#| msgid "Transformation options" msgid "Default transformations for PreApPend" -msgstr "Opções de tranformação" +msgstr "Transformações para PreApPend padrão" #: libraries/classes/Config/Descriptions.php:215 -#, fuzzy -#| msgid "Default sorting order" msgid "Default transformations for DateFormat" -msgstr "Ordenação padrão" +msgstr "Transformações para DateFormat padrão" #: libraries/classes/Config/Descriptions.php:219 -#, fuzzy -#| msgid "Transformation options" msgid "Default transformations for Inline" -msgstr "Opções de tranformação" +msgstr "Transformações para Inline padrão" #: libraries/classes/Config/Descriptions.php:223 -#, fuzzy -#| msgid "Transformation options" msgid "Default transformations for TextImageLink" -msgstr "Opções de tranformação" +msgstr "Transformações para TextImageLink padrão" #: libraries/classes/Config/Descriptions.php:227 -#, fuzzy -#| msgid "Transformation options" msgid "Default transformations for TextLink" -msgstr "Opções de tranformação" +msgstr "Transformações para TextLink padrão" #: libraries/classes/Config/Descriptions.php:232 msgid "Show server listing as a list instead of a drop down." @@ -3958,10 +3941,9 @@ msgstr "Tempo máximo de execução" #: libraries/classes/Config/Descriptions.php:251 #: templates/display/export/options_output.twig:17 -#, fuzzy, php-format -#| msgid "Statements" +#, php-format msgid "Use %s statement" -msgstr "Itens" +msgstr "Use a instrução %s" #: libraries/classes/Config/Descriptions.php:254 prefs_manage.php:307 msgid "Save as file" @@ -4104,8 +4086,6 @@ msgstr "Tipo MIME" #: libraries/classes/Config/Descriptions.php:314 #: libraries/classes/Config/Descriptions.php:338 #: libraries/classes/Config/Descriptions.php:403 -#, fuzzy -#| msgid "Relations" msgid "Relationships" msgstr "Relações" @@ -4126,10 +4106,8 @@ msgid "Overwrite existing file(s)" msgstr "Substituir o(s) ficheiro(s) existente(s)" #: libraries/classes/Config/Descriptions.php:346 -#, fuzzy -#| msgid "horizontal (rotated headers)" msgid "Export as separate files" -msgstr "horizontal (cabeçalhos rodados)" +msgstr "Exportar como ficheiros separados" #: libraries/classes/Config/Descriptions.php:352 msgid "Remember file name template" @@ -7095,7 +7073,7 @@ msgstr "Único" #: libraries/classes/Controllers/Table/TableStructureController.php:1202 #: templates/columns_definitions/column_indexes.twig:20 msgid "Spatial" -msgstr "" +msgstr "Espacial" #: libraries/classes/Controllers/Table/TableStructureController.php:1198 #: libraries/classes/Controllers/Table/TableStructureController.php:1203 @@ -9637,10 +9615,8 @@ msgstr "Data de Criação" #: libraries/classes/Plugins/Export/ExportLatex.php:224 #: libraries/classes/Plugins/Export/ExportSql.php:706 #: libraries/classes/Plugins/Export/ExportXml.php:244 -#, fuzzy -#| msgid "PHP Version" msgid "PHP Version:" -msgstr "versão do PHP" +msgstr "versão do PHP:" #: libraries/classes/Plugins/Export/ExportLatex.php:254 #: libraries/classes/Plugins/Export/ExportSql.php:895 @@ -17269,9 +17245,8 @@ msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "" #: libraries/advisory_rules.txt:167 -#, fuzzy msgid "Query Cache usage" -msgstr "Tipo de Query" +msgstr "Utilização da cache de comandos" #: libraries/advisory_rules.txt:170 #, php-format diff --git a/po/ro.po b/po/ro.po index e45bc3ad0f..7a69b4fb06 100644 --- a/po/ro.po +++ b/po/ro.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.8.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2018-02-12 16:30+0100\n" -"PO-Revision-Date: 2018-04-19 14:01+0000\n" -"Last-Translator: S.C. MEGAHOST S.R.L. \n" +"PO-Revision-Date: 2018-08-13 08:41+0000\n" +"Last-Translator: Dan Caragea \n" "Language-Team: Romanian \n" "Language: ro\n" @@ -14,47 +14,42 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -"X-Generator: Weblate 3.0-dev\n" +"X-Generator: Weblate 3.2-dev\n" #: ajax.php:21 ajax.php:50 export.php:203 libraries/classes/Export.php:1100 -#, fuzzy msgid "Bad type!" -msgstr "Tipul este greșit!" +msgstr "Tip incorect!" #: changelog.php:39 license.php:34 -#, fuzzy, php-format +#, php-format msgid "" "The %s file is not available on this system, please visit %s for more " "information." msgstr "" -"Fișierul %s nu este disponibil pe acest sistem, vă rugăm să vizitați %s " -"pentru mai multe informații." +"Fișierul %s nu este disponibil în acest sistem, te rog vizitează %s pentru " +"mai multe informații." #: db_central_columns.php:127 -#, fuzzy msgid "The central list of columns for the current database is empty." msgstr "Lista centrală de coloane pentru baza de date curentă este goală." #: db_central_columns.php:156 -#, fuzzy msgid "Click to sort." -msgstr "Clic pentru sortare." +msgstr "Dă clic pentru a sorta." #: db_central_columns.php:175 -#, fuzzy, php-format +#, php-format msgid "Showing rows %1$s - %2$s." -msgstr "Afişarea rândurilor %1$s - %2$s." +msgstr "Arăt rândurile %1$s - %2$s." #: db_datadict.php:59 libraries/classes/Operations.php:47 -#, fuzzy msgid "Database comment" -msgstr "Comentarii referitoare la baza de date" +msgstr "Comentariu bază de date" #: db_datadict.php:106 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:596 #: templates/columns_definitions/column_definitions_form.twig:72 #: templates/table/structure/display_table_stats.twig:6 -#, fuzzy msgid "Table comments:" msgstr "Comentarii tabel:" @@ -84,7 +79,6 @@ msgstr "Comentarii tabel:" #: templates/table/relation/common_form.twig:34 #: templates/table/relation/common_form.twig:109 #: templates/table/index_form.twig:115 -#, fuzzy msgid "Column" msgstr "Coloană" @@ -112,7 +106,6 @@ msgstr "Coloană" #: templates/table/tracking/structure_snapshot_indexes.twig:6 #: templates/table/tracking/structure_snapshot_columns.twig:7 #: templates/columns_definitions/table_fields_definitions.twig:12 -#, fuzzy msgid "Type" msgstr "Tip" @@ -134,7 +127,6 @@ msgstr "Tip" #: templates/table/search/zoom_result_form.twig:35 #: templates/table/tracking/structure_snapshot_columns.twig:9 #: templates/columns_definitions/table_fields_definitions.twig:30 -#, fuzzy msgid "Null" msgstr "Nul" @@ -155,7 +147,6 @@ msgstr "Nul" #: templates/table/structure/table_structure_header.twig:10 #: templates/table/tracking/structure_snapshot_columns.twig:10 #: templates/columns_definitions/table_fields_definitions.twig:20 -#, fuzzy msgid "Default" msgstr "Implicit" @@ -166,9 +157,8 @@ msgstr "Implicit" #: libraries/classes/Plugins/Export/Helpers/Pdf.php:487 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:635 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:658 -#, fuzzy msgid "Links to" -msgstr "Leagă către" +msgstr "Legături la" #: db_datadict.php:122 libraries/classes/Config/Descriptions.php:302 #: libraries/classes/Config/Descriptions.php:332 @@ -182,7 +172,6 @@ msgstr "Leagă către" #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:659 #: templates/table/structure/table_structure_header.twig:12 #: templates/columns_definitions/table_fields_definitions.twig:54 -#, fuzzy msgid "Comments" msgstr "Comentarii" @@ -193,9 +182,8 @@ msgstr "Comentarii" #: templates/table/structure/check_all_table_column.twig:33 #: templates/columns_definitions/column_indexes.twig:4 #: templates/table/tracking/structure_snapshot_columns.twig:25 -#, fuzzy msgid "Primary" -msgstr "Primar" +msgstr "Principal" #: db_datadict.php:164 js/messages.php:380 #: libraries/classes/CentralColumns.php:1051 @@ -220,7 +208,6 @@ msgstr "Primar" #: templates/table/tracking/structure_snapshot_indexes.twig:24 #: templates/table/tracking/structure_snapshot_columns.twig:33 #: templates/table/structure/table_structure_row.twig:25 -#, fuzzy msgid "No" msgstr "Nu" @@ -256,22 +243,19 @@ msgstr "Nu" #: templates/table/tracking/structure_snapshot_indexes.twig:24 #: templates/table/tracking/structure_snapshot_columns.twig:33 #: templates/table/structure/table_structure_row.twig:25 -#, fuzzy msgid "Yes" msgstr "Da" #: db_export.php:48 -#, fuzzy msgid "View dump (schema) of database" -msgstr "Vizualizarea schemei bazei de date" +msgstr "Vezi dump-ul (schema) bazei de date" #: db_export.php:53 db_tracking.php:105 export.php:387 #: libraries/classes/Controllers/Database/DatabaseStructureController.php:147 #: libraries/classes/Database/Qbe.php:332 #: libraries/classes/Navigation/NavigationTree.php:924 -#, fuzzy msgid "No tables found in database." -msgstr "Nu s-a găsit niciun tabel în baza de date." +msgstr "Niciun tabel găsit în baza de date." #: db_export.php:68 libraries/classes/Config/Descriptions.php:490 #: libraries/classes/Controllers/Server/ServerDatabasesController.php:332 @@ -280,7 +264,6 @@ msgstr "Nu s-a găsit niciun tabel în baza de date." #: libraries/classes/Plugins/Export/ExportXml.php:119 #: libraries/classes/Server/Status/Data.php:128 #: templates/database/structure/show_create.twig:14 -#, fuzzy msgid "Tables" msgstr "Tabele" @@ -302,7 +285,6 @@ msgstr "Tabele" #: templates/columns_definitions/table_fields_definitions.twig:4 #: templates/database/designer/table_list.twig:24 #: templates/database/central_columns/edit_table_header.twig:2 -#, fuzzy msgid "Structure" msgstr "Structură" @@ -313,216 +295,190 @@ msgstr "Structură" #: libraries/classes/Controllers/Server/ServerDatabasesController.php:342 #: libraries/classes/Server/Privileges.php:1143 #: templates/table/structure/display_table_stats.twig:17 -#, fuzzy msgid "Data" msgstr "Date" #: db_export.php:73 libraries/classes/ReplicationGui.php:391 #: templates/database/search/selection_form.twig:32 #: templates/display/export/select_options.twig:4 -#, fuzzy msgid "Select all" msgstr "Selectează tot" #: db_operations.php:56 tbl_create.php:27 -#, fuzzy msgid "The database name is empty!" -msgstr "Numele bazei de date nu este completat!" +msgstr "Numele bazei de date este gol!" #: db_operations.php:67 -#, fuzzy msgid "Cannot copy database to the same name. Change the name and try again." msgstr "" -"Baza de date nu poate fi copiată cu același nume. Schimbați numele și " -"încercați din nou." +"Nu pot copia baza de date în același nume. Schimbă numele și încearcă din " +"nou." #: db_operations.php:154 -#, fuzzy, php-format +#, php-format msgid "Database %1$s has been renamed to %2$s." -msgstr "Baza de date %1$s a fost redenumită în %2$s ." +msgstr "Baza de date %1$s a fost redenumită în %2$s." #: db_operations.php:166 -#, fuzzy, php-format +#, php-format msgid "Database %1$s has been copied to %2$s." -msgstr "Baza de date %1$s a fost copiată la %2$s." +msgstr "Baza de date %1$s a fost copiată în %2$s." #: db_operations.php:294 -#, fuzzy, php-format +#, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. %sFind out why%s." msgstr "" -"Salvarea setărilor phpMyAdmin a fost dezactivată. Pentru a afla de ce, click " -"%saici%s." +"Spațiul de stocare pentru configurarea phpMyAdmin a fost dezactivat. %sAflă " +"de ce%s." #: db_qbe.php:130 -#, fuzzy msgid "You have to choose at least one column to display!" -msgstr "Trebuie să alegeți cel puțin o coloană pentru afișare!" +msgstr "Trebuie să alegi cel puțin o coloană pentru afișare!" #: db_qbe.php:148 -#, fuzzy, php-format +#, php-format msgid "Switch to %svisual builder%s" -msgstr "Comutați la %sconstructorul vizual%s" +msgstr "Comută la %sconstructorul vizual%s" #: db_search.php:32 libraries/classes/Plugins/Auth/AuthenticationConfig.php:84 #: libraries/classes/Plugins/Auth/AuthenticationConfig.php:99 #: libraries/classes/Plugins/Auth/AuthenticationHttp.php:78 #: libraries/classes/Plugins/AuthenticationPlugin.php:171 -#, fuzzy msgid "Access denied!" msgstr "Acces refuzat!" #: db_tracking.php:55 db_tracking.php:80 -#, fuzzy msgid "Tracking data deleted successfully." -msgstr "Înregistrările de monitorizare au fost șterse." +msgstr "Datele de urmărire au fost șterse cu succes." #: db_tracking.php:64 -#, fuzzy, php-format +#, php-format msgid "" "Version %1$s was created for selected tables, tracking is active for them." msgstr "" -"Versiunea %1$s pentru tabelele selectate a fost creată, monitorizarea este " -"activă." +"Versiunea %1$s a fost creată pentru tabelele selectate, urmărirea este " +"activă pentru ele." #: db_tracking.php:95 -#, fuzzy msgid "No tables selected." -msgstr "Nici o bază de date selectată." +msgstr "Nicio bază de date selectată." #: db_tracking.php:152 -#, fuzzy msgid "Database Log" -msgstr "Jurnalul bazei de date" +msgstr "Jurnal bază de date" #: error_report.php:73 -#, fuzzy msgid "" "An error has been detected and an error report has been automatically " "submitted based on your settings." msgstr "" -"A fost detectată o eroare şi un raport de erori a fost generat automat " -"conform setărilor." +"A fost detectată o eroare și a fost trimis automat un raport de erori în " +"baza setărilor tale." #: error_report.php:77 -#, fuzzy msgid "Thank you for submitting this report." -msgstr "Mulțumim că ai trimis acest raport." +msgstr "Îți mulțumim pentru trimiterea acest raport." #: error_report.php:81 -#, fuzzy msgid "" "An error has been detected and an error report has been generated but failed " "to be sent." msgstr "" -"O eroare a fost detectată și un raport de eroare a fost generat, dar nu a " -"reușitsă fie trimis." +"O eroare a fost detectată și a fost generat un raport de eroare, dar nu a " +"fost trimis." #: error_report.php:86 -#, fuzzy msgid "If you experience any problems please submit a bug report manually." msgstr "" -"Dacă întâmpinaţi probleme vă rugăm să trimiteți un raport de eroare în mod " -"manual." +"Dacă întâmpini orice fel de probleme, te rog trimite manual un raport de " +"erori." #: error_report.php:90 -#, fuzzy msgid "You may want to refresh the page." -msgstr "Este posibil să doriți reîncărcați pagina." +msgstr "Poate vrei să reîmprospătezi pagina." #: export.php:287 -#, fuzzy msgid "Bad parameters!" -msgstr "Parametrii greșiți!" +msgstr "Parametri greșiți!" #: gis_data_editor.php:121 -#, fuzzy, php-format +#, php-format msgid "Value for the column \"%s\"" msgstr "Valoare pentru coloana „%s”" #: gis_data_editor.php:149 #: templates/table/gis_visualization/gis_visualization.twig:38 -#, fuzzy msgid "Use OpenStreetMaps as Base Layer" -msgstr "Folosește OpenStreetMap ca strat de bază" +msgstr "Folosește OpenStreetMaps ca strat de bază" #. l10n: Spatial Reference System Identifier #: gis_data_editor.php:171 -#, fuzzy msgid "SRID:" msgstr "SRID:" #: gis_data_editor.php:197 -#, fuzzy, php-format +#, php-format msgid "Geometry %d:" msgstr "Geometrie %d:" #: gis_data_editor.php:219 -#, fuzzy msgid "Point:" msgstr "Punct:" #: gis_data_editor.php:220 gis_data_editor.php:247 gis_data_editor.php:303 #: gis_data_editor.php:376 js/messages.php:517 -#, fuzzy msgid "X" msgstr "X" #: gis_data_editor.php:223 gis_data_editor.php:251 gis_data_editor.php:307 #: gis_data_editor.php:382 js/messages.php:518 -#, fuzzy msgid "Y" msgstr "Y" #: gis_data_editor.php:245 gis_data_editor.php:301 gis_data_editor.php:374 #: js/messages.php:520 -#, fuzzy, php-format +#, php-format msgid "Point %d" msgstr "Punct %d" #: gis_data_editor.php:258 gis_data_editor.php:314 gis_data_editor.php:392 #: js/messages.php:526 -#, fuzzy msgid "Add a point" msgstr "Adaugă un punct" #: gis_data_editor.php:275 -#, fuzzy, php-format +#, php-format msgid "Linestring %d:" -msgstr "Șir de caractere %d:" +msgstr "Șir de linii %d:" #: gis_data_editor.php:278 gis_data_editor.php:355 -#, fuzzy msgid "Outer ring:" -msgstr "Inelul exterior:" +msgstr "Inel exterior:" #: gis_data_editor.php:280 gis_data_editor.php:357 -#, fuzzy, php-format +#, php-format msgid "Inner ring %d:" -msgstr "Inelul interior %d:" +msgstr "Inel interior %d:" #: gis_data_editor.php:317 -#, fuzzy msgid "Add a linestring" -msgstr "Adaugă un nou rând de caractere" +msgstr "Adaugă un șir de linii" #: gis_data_editor.php:318 gis_data_editor.php:397 js/messages.php:527 -#, fuzzy msgid "Add an inner ring" -msgstr "Adăugați un inel interior" +msgstr "Adăugă un inel interior" #: gis_data_editor.php:339 -#, fuzzy, php-format +#, php-format msgid "Polygon %d:" msgstr "Poligon %d:" #: gis_data_editor.php:403 -#, fuzzy msgid "Add a polygon" msgstr "Adaugă un poligon" #: gis_data_editor.php:409 -#, fuzzy msgid "Add geometry" msgstr "Adaugă geometrie" @@ -570,157 +526,135 @@ msgstr "Adaugă geometrie" #: templates/display/results/options_block.twig:96 #: templates/server/binlog/log_selector.twig:27 #: templates/table/index_form.twig:217 view_operations.php:113 -#, fuzzy msgid "Go" msgstr "Execută" #: gis_data_editor.php:418 -#, fuzzy msgid "Output" -msgstr "Rezultat" +msgstr "Ieșire" #: gis_data_editor.php:421 -#, fuzzy msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field." msgstr "" -"Alege \"GeomFromText\" din coloana \"Function\" și salvează valoarea " -"alăturată în atributul \"Value\"." +"Alege „GeomFromText” din coloana „Funcție” și plasează șirul mai jos în " +"câmpul „Valoare”." #: import.php:71 -#, fuzzy msgid "Succeeded" -msgstr "Reușit" +msgstr "A reușit" #: import.php:75 js/messages.php:614 -#, fuzzy msgid "Failed" -msgstr "Eșuat" +msgstr "A eșuat" #: import.php:79 -#, fuzzy msgid "Incomplete params" msgstr "Parametrii incompleți" #: import.php:203 -#, fuzzy, php-format +#, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " "%sdocumentation%s for a workaround for this limit." msgstr "" -"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la " -"%sdocumentație%s pentru căi de ocolire a acestei limite." +"Probabil ai încercat să încarci un fișier care este prea mare. Te rog " +"consultă %sdocumentația%s pentru o soluție ocolitoare pentru această limită." #: import.php:380 import.php:582 -#, fuzzy msgid "Showing bookmark" -msgstr "Afișând semn de carte" +msgstr "Arăt semn de carte" #: import.php:401 import.php:578 -#, fuzzy msgid "The bookmark has been deleted." msgstr "Semnul de carte a fost șters." #: import.php:495 -#, fuzzy msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[doc@faq1-16]FAQ 1.16[/doc]." msgstr "" -"Nicio informație nu a fost recepționată pentru import. Fie nu a fost trimis " -"niciun fișier, fie dimensiunea fișierului a depășit dimensiunea maximă " -"permisă de configurația PHP-ului dumneavoastră. Vedeți [doc@faq1-16]FAQ " -"1.16[/doc]." +"Nicio dată primită pentru import. Fie nu a fost trimis niciun fișier, ori " +"fie dimensiunea fișierului a depășit dimensiunea maximă permisă de " +"configurarea ta PHP. Vezi [doc@faq1-16]FAQ 1.16[/doc]." #: import.php:545 libraries/classes/Display/Import.php:56 -#, fuzzy msgid "Could not load import plugins, please check your installation!" -msgstr "" -"Nu au putut fi încărcate extensii suplimentare de import, verificați " -"instalarea!" +msgstr "Nu am putut încărca module de import, te rog verifică-ți instalarea!" #: import.php:585 libraries/classes/Sql.php:809 libraries/classes/Sql.php:1596 -#, fuzzy, php-format +#, php-format msgid "Bookmark %s has been created." msgstr "Semnul de carte %s a fost creat." #: import.php:595 -#, fuzzy, php-format +#, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." -msgstr[0] "Importul s-a finalizat cu succes, %d solicitare finalizată." -msgstr[1] "Importul s-a finalizat cu succes, %d solicitări finalizate." -msgstr[2] "Importul s-a finalizat cu succes, %d solicitări finalizate." +msgstr[0] "Importul a fost finalizat cu succes, o interogare executată." +msgstr[1] "Importul a fost finalizat cu succes, %d interogări executate." +msgstr[2] "Importul a fost finalizat cu succes, %d de interogări executate." #: import.php:626 -#, fuzzy, php-format +#, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " "same file%s and import will resume." msgstr "" -"Timpul de rulare alocat scriptului a expirat; dacă doritți să terminați " -"încărcarea, %s vă rog să re-trimiteți același fișier %s și încărcarea va " -"continua de unde s-a întrerupt." +"Timpul de executare a scriptului a expirat, dacă vrei să termini importul, " +"te rog %sretrimite același fișier%s și importul va fi reluat." #: import.php:636 -#, fuzzy msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -"Totuşi la ultima rulare datele nu au fost parsate, ceea ce de obicei " -"înseamnă că phpMyAdmin nu va reuşi să finalizeze importarea datelor decât în " -"cazul în care se măreşte timpul alocat." +"Totuși, la ultima rulare, nu au fost interpretate niciun fel de date, de " +"obicei asta înseamnă că phpMyAdmin nu va putea finaliza acest import decât " +"dacă mărești limitele de timp php." #: import.php:704 sql.php:157 -#, fuzzy msgid "\"DROP DATABASE\" statements are disabled." -msgstr "Comenzile \"DROP DATABASE\" sunt dezactivate." +msgstr "Declarațiile „ELIMINĂ BAZA DE DATE” sunt dezactivate." #: import_status.php:107 -#, fuzzy msgid "Could not load the progress of the import." -msgstr "Nu se poate determina progresul încărcării." +msgstr "Nu pot încărca progresul importului." #: import_status.php:116 js/messages.php:457 js/messages.php:622 #: libraries/classes/Export.php:514 #: libraries/classes/Plugins/Schema/ExportRelationSchema.php:299 #: libraries/classes/UserPassword.php:248 libraries/classes/Util.php:665 -#, fuzzy msgid "Back" msgstr "Înapoi" #: index.php:149 -#, fuzzy msgid "" "You were logged out from one server, to logout completely from phpMyAdmin, " "you need to logout from all servers." msgstr "" -"Ai fost deconectat de la un server, pentru a te loga complet din phpMyAdmin, " -"trebuie să te deconectezi de pe toate serverele." +"Ai fost dezautentificat de pe un server, pentru a te dezautentifica complet " +"din phpMyAdmin trebuie să te dezautentifici din toate serverele." #: index.php:193 libraries/classes/Footer.php:75 #: libraries/classes/Plugins/Auth/AuthenticationCookie.php:115 -#, fuzzy msgid "phpMyAdmin Demo Server" -msgstr "Server Demo phpMyAdmin" +msgstr "Server demonstrativ phpMyAdmin" #: index.php:197 libraries/classes/Plugins/Auth/AuthenticationCookie.php:118 -#, fuzzy, php-format +#, php-format msgid "" "You are using the demo server. You can do anything here, but please do not " "change root, debian-sys-maint and pma users. More information is available " "at %s." msgstr "" -"Utilizaţi serverul demo. Puteţi face orice aici, dar vă rugăm să nu " -"schimbaţi root, devian-sys-maint sau utilizatorii pma. Mai multe informaţii " -"sunt disponibile at %s." +"Folosești serverul demonstrativ. Poți face orice aici, dar te rog nu " +"modifica rădăcina, devian-sys-maint sau utilizatorii pma. Mai multe " +"informații sunt disponibile la %s." #: index.php:207 -#, fuzzy -#| msgid "General Settings" msgid "General settings" msgstr "Setări generale" @@ -728,95 +662,76 @@ msgstr "Setări generale" #: libraries/classes/Display/ChangePassword.php:58 #: libraries/classes/Display/ChangePassword.php:61 #: libraries/classes/UserPassword.php:242 -#, fuzzy msgid "Change password" -msgstr "Modifică parola" +msgstr "Schimbă parola" #: index.php:253 libraries/classes/Config/Descriptions.php:1488 -#, fuzzy msgid "Server connection collation" -msgstr "Conexiune colaționare server" +msgstr "Colaționare conexiune server" #: index.php:276 -#, fuzzy -#| msgid "Appearance Settings" msgid "Appearance settings" msgstr "Setări aspect" #: index.php:309 prefs_manage.php:274 -#, fuzzy msgid "More settings" msgstr "Mai multe setări" #: index.php:331 -#, fuzzy msgid "Database server" -msgstr "Server de baze de date" +msgstr "Server bază de date" #: index.php:334 libraries/classes/Plugins/Auth/AuthenticationCookie.php:165 -#, fuzzy msgid "Server:" msgstr "Server:" #: index.php:338 -#, fuzzy msgid "Server type:" -msgstr "Tipul server-ului:" +msgstr "Tip de server:" #: index.php:342 -#, fuzzy msgid "Server connection:" msgstr "Conexiune server:" #: index.php:346 libraries/classes/Plugins/Export/ExportLatex.php:223 #: libraries/classes/Plugins/Export/ExportSql.php:704 #: libraries/classes/Plugins/Export/ExportXml.php:243 -#, fuzzy msgid "Server version:" msgstr "Versiune server:" #: index.php:352 -#, fuzzy msgid "Protocol version:" msgstr "Versiune protocol:" #: index.php:356 -#, fuzzy msgid "User:" msgstr "Utilizator:" #: index.php:361 -#, fuzzy msgid "Server charset:" -msgstr "Setul de caractere al serverului:" +msgstr "Set de caractere server:" #: index.php:377 -#, fuzzy msgid "Web server" msgstr "Server web" #: index.php:388 -#, fuzzy msgid "Database client version:" -msgstr "Versiunea client-ului bazei de date:" +msgstr "Versiune client bază de date:" #: index.php:392 -#, fuzzy msgid "PHP extension:" msgstr "Extensie PHP:" #: index.php:406 -#, fuzzy msgid "PHP version:" msgstr "Versiune PHP:" #: index.php:417 -#, fuzzy msgid "Show PHP information" -msgstr "Arată informații PHP" +msgstr "Arată informații despre PHP" #: index.php:436 -#, fuzzy msgid "Version information:" msgstr "Informații despre versiune:" @@ -827,132 +742,119 @@ msgstr "Informații despre versiune:" #: libraries/classes/Sanitize.php:191 libraries/classes/Util.php:314 #: libraries/classes/Util.php:381 #: templates/server/variables/link_template.twig:7 -#, fuzzy msgid "Documentation" msgstr "Documentație" #: index.php:454 -#, fuzzy msgid "Official Homepage" -msgstr "Pagina oficială" +msgstr "Prima pagină oficială" #: index.php:461 -#, fuzzy msgid "Contribute" -msgstr "Contribuie" +msgstr "Adu-ți contribuția" #: index.php:468 -#, fuzzy msgid "Get support" -msgstr "Obține asistență" +msgstr "Obții suport" #: index.php:475 -#, fuzzy msgid "List of changes" -msgstr "Lista modificărilor" +msgstr "Listă de modificări" #: index.php:482 templates/server/plugins/section.twig:13 -#, fuzzy msgid "License" -msgstr "Licenţă" +msgstr "Licență" #: index.php:502 -#, fuzzy msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -"Nu s-a găsit extensia PHP mbstring și se pare că folosiți un set de " -"charactere multi-octet. Fără extensia mbstring, phpMyAdmin nu poate diviza " -"șirurile de caractere corect, fapt ce poate duce la rezultate neașteptate." +"Extensia PHP mbstring nu a fost găsită și se pare că folosești un set de " +"caractere multi-octet. Fără extensia mbstring, phpMyAdmin nu poate să " +"împartă corect șirurile și pot apărea rezultate neașteptate." #: index.php:517 -#, fuzzy msgid "" "The curl extension was not found and allow_url_fopen is disabled. Due to " "this some features such as error reporting or version check are disabled." msgstr "" -"Extensia curl nu a fost gasită iar allow_url_fopen este dezactivat. Din " -"această cauză unele funcții, cum ar fi raportarea de erori sau verificarea " -"versiunii, sunt dezactivate." +"Extensia curl nu a fost găsită, iar allow_url_fopen este dezactivat. Din " +"această cauză, unele funcționalități, cum ar fi raportarea erorilor sau " +"verificarea versiunii, sunt dezactivate." #: index.php:532 -#, fuzzy msgid "" "Your PHP parameter [a@https://secure.php.net/manual/en/session.configuration." "php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower " "than cookie validity configured in phpMyAdmin, because of this, your login " "might expire sooner than configured in phpMyAdmin." msgstr "" -"Parametrul PHP [a@https://secure.php.net/manual/ro/" +"Parametrul tău PHP [a@https://secure.php.net/manual/en/" "session.configuration.php#ini.session.gc-" -"maxlifetime@_blank]session.gc_maxlifetime[/a] este mai mic decât validitatea " -"unui cookie configurat în phpMyAdmin, din această cauză sesiunea " -"dumneavoastră ar putea expira mai devreme decât este configurat în " +"maxlifetime@_blank]session.gc_maxlifetime[/a] este mai mic decât " +"valabilitatea cookie-urilor configurată în phpMyAdmin, de aceea " +"autentificarea ta ar putea expira mai devreme decât este configurată în " "phpMyAdmin." #: index.php:551 -#, fuzzy msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" -"Stocarea cookie-ului de conectare este mai scurtă decît perioada de " -"validitate a cookie-urilor configurată in phpMyAdmim, din această cauză " -"sesiunea dumneavoastră va expira înainte de cum este stabilit în phpMyAdmin." +"Perioada de stocare a cookie-urilor de autentificare este mai mică decât " +"valabilitatea configurată în phpMyAdmim, de aceea autentificarea ta va " +"expira mai devreme decât este configurată în phpMyAdmin." #: index.php:566 -#, fuzzy msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -"Fișierul de configurare necesită o frază de acces secretă (blowfish_secret)." +"Fișierul de configurare necesită acum o frază de acces secretă " +"(blowfish_secret)." #: index.php:573 -#, fuzzy msgid "The secret passphrase in configuration (blowfish_secret) is too short." msgstr "" -"Cheia de acces din fişierul de configurare (blowfish_secret) este prea " -"scurtă." +"Fraza de acces secretă din configurare (blowfish_secret) este prea scurtă." #: index.php:587 -#, fuzzy msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. It is strongly recommended to remove it " "once phpMyAdmin has been configured. Otherwise the security of your server " "may be compromised by unauthorized people downloading your configuration." msgstr "" -"Catalogul [code]config[/code], care este folosit de scriptul de instalare, " -"există încă în catalogul phpMyAdmin. Este recomandată îndepărtarea acestuia " -"odată ce phpMyAdmin a fost configurat. Altfel, securitatea serverului poate " -"fi compromisă de persoane neautorizate care descarcă respectiva configurație." +"Directorul [code]config[/code], care este folosit de scriptul de " +"inițializare, încă există în directorul phpMyAdmin. Este recomandat să-l " +"înlături după ce phpMyAdmin a fost configurat. Altfel, securitatea " +"serverului tău poate fi compromisă de persoane neautorizate care îți " +"descarcă configurarea." #: index.php:603 -#, fuzzy, php-format +#, php-format msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. %sFind out why%s. " msgstr "" -"Configurarea stocării setărilor phpMyAdmin nu a fost finalizată, unele din " -"funcțiile avansate au fost dezactivate. %sAflă de ce%s. " +"Spațiul de stocare a configurării phpMyAdmin nu este complet configurat, " +"unele dintre funcționalitățile avansate au fost dezactivate. %sAflă de ce%s. " #: index.php:610 -#, fuzzy msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" -"Sau, altfel, puteți accesa panoul 'Operațiuni' al oricărei baze de date si " -"configura-o de acolo." +"Sau, alternativ, du-te la fila „Operații” a oricărei baze de date și " +"inițiază-l acolo." #: index.php:635 -#, fuzzy, php-format +#, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Serverul rulează cu Suhosin. Consultați %sdocumentation%s pentru posibile " -"probleme." +"Serverul rulează cu Suhosin. Te rog consultă %sdocumentația%s pentru " +"posibile probleme." #: index.php:649 #, php-format @@ -960,137 +862,118 @@ msgid "" "The $cfg['TempDir'] (%s) is not accessible. phpMyAdmin is not able to cache " "templates and will be slow because of this." msgstr "" +"$cfg['TempDir'] (%s) nu este accesibil. phpMyAdmin nu poate memora în cache " +"șabloane și va fi lent din cauza asta." #: js/messages.php:43 -#, fuzzy msgid "Confirm" -msgstr "Confirmare" +msgstr "Confirmă" #: js/messages.php:44 -#, fuzzy, php-format +#, php-format msgid "Do you really want to execute \"%s\"?" -msgstr "Sigur doriți să executați „%s”?" +msgstr "Sigur vrei să execuți „%s”?" #: js/messages.php:46 libraries/classes/MultSubmits.php:457 -#, fuzzy msgid "You are about to DESTROY a complete database!" -msgstr "Sunteți pe cale să DISTRUGEȚI o întreagă bază de date!" +msgstr "Ești pe cale să DISTRUGI o bază de date întreagă!" #: js/messages.php:48 -#, fuzzy msgid "Cannot rename database to the same name. Change the name and try again" msgstr "" -"Baza de date nu poate fi redenumită cu același nume. Schimbați numele și " -"încercați din nou" +"Baza de date nu poate fi redenumită cu același nume. Schimbă numele și " +"încearcă din nou" #: js/messages.php:50 -#, fuzzy msgid "You are about to DESTROY a complete table!" -msgstr "Sunteți pe cale să DISTRUGEȚI un întreg tabel!" +msgstr "Ești pe cale să DISTRUGI un tabel întreg!" #: js/messages.php:52 -#, fuzzy msgid "You are about to TRUNCATE a complete table!" -msgstr "Sunteți pe cale să TRUNCHIAȚI un întreg tabel!" +msgstr "Ești pe cale să TRUNCHIEZI un tabel întreg!" #: js/messages.php:53 -#, fuzzy msgid "Delete tracking data for this table?" -msgstr "Șterge datele de urmărire pentru acest tabel?" +msgstr "Ștergi datele de urmărire pentru acest tabel?" #: js/messages.php:55 -#, fuzzy msgid "Delete tracking data for these tables?" -msgstr "Ștergeți datele de urmărire pentru aceste tabele?" +msgstr "Ștergi datele de urmărire pentru aceste tabele?" #: js/messages.php:57 -#, fuzzy msgid "Delete tracking data for this version?" -msgstr "Șterge datele de urmărire pentru această versiune?" +msgstr "Ștergi datele de urmărire pentru această versiune?" #: js/messages.php:59 -#, fuzzy msgid "Delete tracking data for these versions?" -msgstr "Ștergeți datele de urmărire pentru aceste versiuni?" +msgstr "Ștergi datele de urmărire pentru aceste versiuni?" #: js/messages.php:60 -#, fuzzy msgid "Delete entry from tracking report?" -msgstr "Șterge înregistrarea din raportul de urmarire?" +msgstr "Ștergi intrarea din raportul de urmărire?" #: js/messages.php:61 -#, fuzzy msgid "Deleting tracking data" -msgstr "Se șterg datele de urmărire" +msgstr "Șterg datele de urmărire" #: js/messages.php:62 -#, fuzzy msgid "Dropping Primary Key/Index" -msgstr "Se şterge cheia primară/indexul" +msgstr "Elimin cheia principală/indexul" #: js/messages.php:63 -#, fuzzy msgid "Dropping Foreign key." -msgstr "Se șterge cheia străină." +msgstr "Elimin cheia străină." #: js/messages.php:65 -#, fuzzy msgid "This operation could take a long time. Proceed anyway?" -msgstr "Această operație poate dura mult timp. Continuați oricum?" +msgstr "Această operație ar putea dura mult timp. Continui oricum?" #: js/messages.php:67 -#, fuzzy, php-format +#, php-format msgid "Do you really want to delete user group \"%s\"?" -msgstr "Sigur doriți să ştergeţi grupul de utilizatori \"%s\"?" +msgstr "Sigur vrei să ștergi grupul de utilizatori „%s”?" #: js/messages.php:69 -#, fuzzy, php-format +#, php-format msgid "Do you really want to delete the search \"%s\"?" -msgstr "Sigur doriți să ştergeţi interogarea \"%s\"?" +msgstr "Sigur vrei să ștergi căutarea „%s”?" #: js/messages.php:71 -#, fuzzy msgid "You have unsaved changes; are you sure you want to leave this page?" -msgstr "Există modificări nesalvateș; sigur vreți să părăsiți această pagină?" +msgstr "Ai modificări nesalvate; sigur vrei să părăsești această pagină?" #: js/messages.php:73 -#, fuzzy msgid "Do you really want to revoke the selected user(s) ?" -msgstr "Sigur doriți să ştergeţi utilizatorul(ii) selectat(ați)?" +msgstr "Sigur vrei să revoci utilizatorul selectat (utilizatorii selectați)?" #: js/messages.php:75 -#, fuzzy msgid "Do you really want to delete this central column?" -msgstr "Sigur doriți să ştergeţi această coloană centrală?" +msgstr "Sigur vrei să ștergi această coloană centrală?" #: js/messages.php:77 -#, fuzzy msgid "Do you really want to delete the selected items?" -msgstr "Sigur doriți să ştergeţi elementele selectate \"%s\"?" +msgstr "Sigur vrei să ștergi elementele selectate?" #: js/messages.php:79 -#, fuzzy msgid "" "Do you really want to DROP the selected partition(s)? This will also DELETE " "the data related to the selected partition(s)!" msgstr "" -"Sigur doriţi sa ARUNCAŢI [DROP] partiţiile selectate? Aceasta va ŞTERGE " -"[DELETE], de asemenea, şi datele referitoare la partiţiile selectate!" +"Sigur vrei să ELIMINI partiția selectată (partițiile selectate)? De " +"asemenea, se vor ȘTERGE și datele legate de partiția selectată (partițiile " +"selectate)!" #: js/messages.php:83 -#, fuzzy msgid "Do you really want to TRUNCATE the selected partition(s)?" -msgstr "Sigur doriți să ştergeţi [TRUNCATE] partiția (partițiile) selectate?" +msgstr "Sigur vrei să TRUNCHIEZI partiția selectată (partițiile selectate)?" #: js/messages.php:85 -#, fuzzy msgid "Do you really want to remove partitioning?" -msgstr "Sigur doriți să ştergeţi partiționarea?" +msgstr "Sigur vrei să înlături partiționarea?" #: js/messages.php:86 -#, fuzzy msgid "Do you really want to RESET SLAVE?" -msgstr "Sigur doriți să executati RESET SLAVE?" +msgstr "Sigur vrei să RESETEZI SCLAV?" #: js/messages.php:88 msgid "" @@ -1100,15 +983,19 @@ msgid "" "collation; in this case we suggest you revert to the original collation and " "refer to the tips at " msgstr "" +"Această operație va încerca să-ți convertească datele la noua colaționare. " +"În cazuri rare, în special când un caracter nu există în noua colaționare, " +"acest proces ar putea duce la apariția incorectă a datelor sub noua " +"colaționare; în acest caz, îți sugerăm să revii la colaționarea originală și " +"să vezi sfaturile de la " #: js/messages.php:94 msgid "Garbled Data" -msgstr "" +msgstr "Date confuze" #: js/messages.php:96 -#, fuzzy msgid "Are you sure you wish to change the collation and convert the data?" -msgstr "Sigur doriți să modificați colaționarea și să convertiți datele?" +msgstr "Sigur vrei să schimbi colaționarea și să convertești datele?" #: js/messages.php:98 msgid "" @@ -1121,203 +1008,164 @@ msgid "" msgstr "" #: js/messages.php:107 -#, fuzzy msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -"Sigur doriți să modificați toate coliziunile coloanelor și să convertiți " +"Sigur vrei să schimbi toate colaționările coloanelor și să convertești " "datele?" #: js/messages.php:111 -#, fuzzy msgid "Save & close" -msgstr "Salvează şi închide" +msgstr "Salvează și închide" #: js/messages.php:112 libraries/classes/InsertEdit.php:1892 #: prefs_manage.php:355 prefs_manage.php:366 #: templates/config/form_display/fieldset_bottom.twig:9 -#, fuzzy msgid "Reset" -msgstr "Resetare" +msgstr "Resetează" #: js/messages.php:113 -#, fuzzy msgid "Reset all" msgstr "Resetează tot" #: js/messages.php:116 -#, fuzzy msgid "Missing value in the form!" -msgstr "Valoarea lipsește din formular!" +msgstr "Lipsește valoarea în formular!" #: js/messages.php:117 -#, fuzzy msgid "Select at least one of the options!" -msgstr "Selectați cel puțin o opțiune!" +msgstr "Selectează cel puțin una din opțiuni!" #: js/messages.php:118 -#, fuzzy msgid "Please enter a valid number!" -msgstr "Introduceţi un număr valid!" +msgstr "Te rog introdu un număr valid!" #: js/messages.php:119 -#, fuzzy msgid "Please enter a valid length!" -msgstr "Vă rugăm să introduceţi o lungime validă!" +msgstr "Te rog introdu o lungime validă!" #: js/messages.php:120 -#, fuzzy msgid "Add index" -msgstr "Adaugă index" +msgstr "Adaugă indexul" #: js/messages.php:121 -#, fuzzy -#| msgid "Edit Index" msgid "Edit index" -msgstr "Modifică index" +msgstr "Editează indexul" #: js/messages.php:122 templates/table/index_form.twig:211 -#, fuzzy, php-format +#, php-format msgid "Add %s column(s) to index" -msgstr "Adaugă %s coloane la index" +msgstr "Adaugă o coloană (%s coloane) la index" #: js/messages.php:123 -#, fuzzy msgid "Create single-column index" -msgstr "Creaţi un index cu o singură coloană" +msgstr "Creează indexul pe o singură coloană" #: js/messages.php:124 -#, fuzzy msgid "Create composite index" -msgstr "Creare index compus" +msgstr "Creează index compus" #: js/messages.php:125 -#, fuzzy msgid "Composite with:" -msgstr "Compus cu:" +msgstr "Compus din:" #: js/messages.php:126 -#, fuzzy msgid "Please select column(s) for the index." -msgstr "Selectați coloana(ele) pentru index." +msgstr "Te rog selectează coloana (coloanele) pentru index." #: js/messages.php:129 libraries/classes/InsertEdit.php:1890 #: templates/columns_definitions/column_definitions_form.twig:146 #: templates/table/relation/common_form.twig:188 #: templates/table/index_form.twig:216 -#, fuzzy msgid "Preview SQL" msgstr "Previzualizare SQL" #: js/messages.php:132 -#, fuzzy msgid "Simulate query" -msgstr "Simulează interogarea" +msgstr "Simulează o interogare" #: js/messages.php:133 -#, fuzzy msgid "Matched rows:" -msgstr "Rânduri afectate:" +msgstr "Rânduri identice:" #: js/messages.php:134 libraries/classes/Util.php:566 -#, fuzzy msgid "SQL query:" msgstr "Interogare SQL:" #. l10n: Default label for the y-Axis of Charts #: js/messages.php:138 -#, fuzzy -#| msgid "Y Values" msgid "Y values" msgstr "Valori Y" #: js/messages.php:141 -#, fuzzy msgid "The host name is empty!" -msgstr "Câmpul nume gazdă nu a fost completat!" +msgstr "Numele gazdei este gol!" #: js/messages.php:142 -#, fuzzy msgid "The user name is empty!" -msgstr "Câmpul nume de utilizator nu a fost completat!" +msgstr "Numele de utilizator este gol!" #: js/messages.php:143 libraries/classes/Server/Privileges.php:1876 #: libraries/classes/UserPassword.php:66 -#, fuzzy msgid "The password is empty!" -msgstr "Câmpul parolă nu a fost completat!" +msgstr "Parola este goală!" #: js/messages.php:144 libraries/classes/Server/Privileges.php:1874 #: libraries/classes/UserPassword.php:70 -#, fuzzy msgid "The passwords aren't the same!" -msgstr "Parolele nu coincid!" +msgstr "Parolele nu sunt identice!" #: js/messages.php:145 -#, fuzzy msgid "Removing Selected Users" -msgstr "Se elimină utilizatorii aleși" +msgstr "Înlătur utilizatorii selectați" #: js/messages.php:146 js/messages.php:213 libraries/classes/Tracking.php:333 #: libraries/classes/Tracking.php:660 -#, fuzzy msgid "Close" msgstr "Închide" #: js/messages.php:149 -#, fuzzy -#| msgid "The number of pages created." msgid "Template was created." msgstr "Șablonul a fost creat." #: js/messages.php:150 -#, fuzzy msgid "Template was loaded." -msgstr "Şablonul a fost încărcat." +msgstr "Șablonul a fost încărcat." #: js/messages.php:151 -#, fuzzy -#| msgid "The profile has been updated." msgid "Template was updated." msgstr "Șablonul a fost actualizat." #: js/messages.php:152 -#, fuzzy -#| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Șablonul a fost șters." #. l10n: Other, small valued, queries #: js/messages.php:155 libraries/classes/Server/Status/Data.php:132 #: libraries/classes/Server/Status/Queries.php:149 -#, fuzzy msgid "Other" msgstr "Altele" #. l10n: Thousands separator #: js/messages.php:157 libraries/classes/Util.php:1351 #: libraries/classes/Util.php:1382 -#, fuzzy msgid "," msgstr "," #. l10n: Decimal separator #: js/messages.php:159 libraries/classes/Util.php:1349 #: libraries/classes/Util.php:1380 -#, fuzzy msgid "." -msgstr "." +msgstr "," #: js/messages.php:161 -#, fuzzy msgid "Connections / Processes" -msgstr "Conexiuni / Procese" +msgstr "Conexiuni/procese" #: js/messages.php:165 -#, fuzzy msgid "Local monitor configuration incompatible!" -msgstr "Configurația monitorului local este incompatibilă!" +msgstr "Configurarea monitorizării locale este incompatibilă!" #: js/messages.php:167 msgid "" @@ -1326,189 +1174,157 @@ msgid "" "likely that your current configuration will not work anymore. Please reset " "your configuration to default in the Settings menu." msgstr "" +"Configurarea de aranjare a diagramelor în memoria locală a navigatoarelor " +"tale nu mai este compatibilă cu cea mai nouă versiune a ferestrei de dialog " +"a monitorului. Este foarte probabil ca actuala configurare nu mai " +"funcționeze. Te rog resetează-ți configurarea la valorile implicite în " +"meniul Setări." #: js/messages.php:173 -#, fuzzy msgid "Query cache efficiency" -msgstr "Eficiența prestocării interogărilor" +msgstr "Eficiență cache interogări" #: js/messages.php:174 -#, fuzzy msgid "Query cache usage" -msgstr "Utilizare prestocării interogărilor" +msgstr "Folosire cache interogări" #: js/messages.php:175 -#, fuzzy msgid "Query cache used" -msgstr "Prestocare interogări utilizată" +msgstr "Cache interogări folosit" #: js/messages.php:177 -#, fuzzy -#| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Utilizare CPU sistem" #: js/messages.php:178 -#, fuzzy msgid "System memory" msgstr "Memorie sistem" #: js/messages.php:179 -#, fuzzy msgid "System swap" -msgstr "Swap sistem" +msgstr "Schimb de sistem" #: js/messages.php:181 -#, fuzzy msgid "Average load" msgstr "Încărcare medie" #: js/messages.php:182 -#, fuzzy msgid "Total memory" msgstr "Memorie totală" #: js/messages.php:183 -#, fuzzy msgid "Cached memory" -msgstr "Memorie prestocată" +msgstr "Memorie în cache" #: js/messages.php:184 -#, fuzzy msgid "Buffered memory" msgstr "Memorie tampon" #: js/messages.php:185 -#, fuzzy msgid "Free memory" msgstr "Memorie disponibilă" #: js/messages.php:186 -#, fuzzy msgid "Used memory" msgstr "Memorie folosită" #: js/messages.php:188 -#, fuzzy -#| msgid "Total Swap" msgid "Total swap" -msgstr "Swap total" +msgstr "Schimb total" #: js/messages.php:189 -#, fuzzy -#| msgid "Cached Swap" msgid "Cached swap" -msgstr "Swap prestocat" +msgstr "Schimb în cache" #: js/messages.php:190 -#, fuzzy -#| msgid "Used Swap" msgid "Used swap" -msgstr "Swap utilizat" +msgstr "Schimb folosit" #: js/messages.php:191 -#, fuzzy -#| msgid "Free Swap" msgid "Free swap" -msgstr "Swap liber" +msgstr "Schimb disponibil" #: js/messages.php:193 -#, fuzzy msgid "Bytes sent" msgstr "Octeți trimiși" #: js/messages.php:194 -#, fuzzy msgid "Bytes received" msgstr "Octeți primiți" #: js/messages.php:195 libraries/classes/Server/Status.php:243 -#, fuzzy msgid "Connections" msgstr "Conexiuni" #: js/messages.php:196 libraries/classes/Server/Status/Data.php:429 #: libraries/classes/Server/Status/Processes.php:140 -#, fuzzy msgid "Processes" msgstr "Procese" #. l10n: shortcuts for Byte #: js/messages.php:199 libraries/classes/Util.php:1262 -#, fuzzy msgid "B" msgstr "O" #. l10n: shortcuts for Kilobyte #: js/messages.php:200 libraries/classes/Server/Status/Monitor.php:224 #: libraries/classes/Util.php:1264 -#, fuzzy msgid "KiB" msgstr "KiO" #. l10n: shortcuts for Megabyte #: js/messages.php:201 libraries/classes/Server/Status/Monitor.php:225 #: libraries/classes/Util.php:1266 -#, fuzzy msgid "MiB" msgstr "MiO" #. l10n: shortcuts for Gigabyte #: js/messages.php:202 libraries/classes/Util.php:1268 -#, fuzzy msgid "GiB" msgstr "GiO" #. l10n: shortcuts for Terabyte #: js/messages.php:203 libraries/classes/Util.php:1270 -#, fuzzy msgid "TiB" msgstr "TiO" #. l10n: shortcuts for Petabyte #: js/messages.php:204 libraries/classes/Util.php:1272 -#, fuzzy msgid "PiB" msgstr "PiO" #. l10n: shortcuts for Exabyte #: js/messages.php:205 libraries/classes/Util.php:1274 -#, fuzzy msgid "EiB" msgstr "EiO" #: js/messages.php:206 -#, fuzzy, php-format +#, php-format msgid "%d table(s)" -msgstr "%d tabel(e)" +msgstr "Un tabel (%d tabele)" #. l10n: Questions is the name of a MySQL Status variable #: js/messages.php:209 -#, fuzzy msgid "Questions" msgstr "Întrebări" #: js/messages.php:210 libraries/classes/Server/Status.php:151 -#, fuzzy msgid "Traffic" msgstr "Trafic" #: js/messages.php:211 libraries/classes/Menu.php:612 #: libraries/classes/Server/Status/Monitor.php:264 #: libraries/classes/Util.php:3963 -#, fuzzy msgid "Settings" -msgstr "Configurări" +msgstr "Setări" #: js/messages.php:212 -#, fuzzy msgid "Add chart to grid" -msgstr "Adaugă grafic la grilă" +msgstr "Adaugă diagramă la grilă" #: js/messages.php:215 -#, fuzzy msgid "Please add at least one variable to the series!" -msgstr "Adăugați cel puțin o variabilă la serie!" +msgstr "Te rog adaugă cel puțin o variabilă la serie!" #: js/messages.php:216 libraries/classes/Display/Results.php:1467 #: libraries/classes/Plugins/Export/ExportSql.php:2188 @@ -1521,235 +1337,200 @@ msgstr "Adăugați cel puțin o variabilă la serie!" #: templates/columns_definitions/transformation.twig:4 #: templates/database/designer/options_panel.twig:178 #: templates/display/export/options_output_compression.twig:7 -#, fuzzy msgid "None" msgstr "Niciunul" #: js/messages.php:217 -#, fuzzy msgid "Resume monitor" -msgstr "Reia monitorul" +msgstr "Reia monitorizarea" #: js/messages.php:218 -#, fuzzy msgid "Pause monitor" -msgstr "Întrerupe monitorul" +msgstr "Întrerupe monitorizarea" #: js/messages.php:219 libraries/classes/Server/Status/Processes.php:46 -#, fuzzy msgid "Start auto refresh" msgstr "Pornește împrospătarea automată" #: js/messages.php:220 -#, fuzzy msgid "Stop auto refresh" msgstr "Oprește împrospătarea automată" #: js/messages.php:222 -#, fuzzy msgid "general_log and slow_query_log are enabled." -msgstr "general_log și slow_query_log sînt activate." +msgstr "general_log și slow_query_log sunt activate." #: js/messages.php:223 -#, fuzzy msgid "general_log is enabled." -msgstr "general_log e activat." +msgstr "general_log este activat." #: js/messages.php:224 -#, fuzzy msgid "slow_query_log is enabled." -msgstr "slow_query_log e activat." +msgstr "slow_query_log este activat." #: js/messages.php:225 -#, fuzzy msgid "slow_query_log and general_log are disabled." -msgstr "slow_query_log și general_log sînt dezactivate." +msgstr "slow_query_log și general_log sunt dezactivate." #: js/messages.php:226 -#, fuzzy msgid "log_output is not set to TABLE." -msgstr "log_output nu e stabilit la TABLE." +msgstr "log_output nu este setat în TABEL." #: js/messages.php:227 -#, fuzzy msgid "log_output is set to TABLE." -msgstr "log_output e stabilit la TABLE." +msgstr "log_output este setat în TABEL." #: js/messages.php:229 -#, fuzzy, php-format +#, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " "than %d seconds. It is advisable to set this long_query_time 0-2 seconds, " "depending on your system." msgstr "" -"slow_query_log este activat, dar serverul înregistrează în jurnal doar " -"interogările ce durează mai mult de %d secunde. Este recomandat să stabiliți " -"long_query_time la 0-2 secunde, în funcție de sistemul dumneavoastră." +"slow_query_log este activat, dar serverul înregistrează numai interogările " +"mai mari de %d secunde. Este recomandat să setezi long_query_time la 0-2 " +"secunde, în funcție de sistemul tău." #: js/messages.php:233 -#, fuzzy, php-format +#, php-format msgid "long_query_time is set to %d second(s)." -msgstr "long_query_time e stabilit la %d secunde." +msgstr "long_query_time este setat la %d secunde." #: js/messages.php:235 -#, fuzzy msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" -"Următoarele configurări vor fi aplicate global și reinițializate la valori " -"implicite după repornirea serverului:" +"Următoarele setări vor fi aplicate global și resetate la valorile implicite " +"după repornirea serverului:" #. l10n: %s is FILE or TABLE #: js/messages.php:239 -#, fuzzy, php-format +#, php-format msgid "Set log_output to %s" -msgstr "Stabilește log_output la %s" +msgstr "Setează log_output la %s" #. l10n: Enable in this context means setting a status variable to ON #: js/messages.php:241 -#, fuzzy, php-format +#, php-format msgid "Enable %s" msgstr "Activează %s" #. l10n: Disable in this context means setting a status variable to OFF #: js/messages.php:243 -#, fuzzy, php-format +#, php-format msgid "Disable %s" msgstr "Dezactivează %s" #. l10n: %d seconds #: js/messages.php:245 -#, fuzzy, php-format +#, php-format msgid "Set long_query_time to %d seconds." -msgstr "Stabilește long_query_time la %d secunde." +msgstr "Setează long_query_time la %d secunde." #: js/messages.php:247 -#, fuzzy msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -"Nu puteți modifica aceste variabile. Autentificați-vă ca root sau contactați " -"administratorul bazei de date." +"Nu poți modifica aceste variabile. Te rog autentifică-te în rădăcină sau " +"contactează administratorul bazei de date." #: js/messages.php:250 -#, fuzzy msgid "Change settings" -msgstr "Modificare configurări" +msgstr "Modifică setările" #: js/messages.php:251 -#, fuzzy msgid "Current settings" -msgstr "Configurări curente" +msgstr "Setări curente" #: js/messages.php:253 -#, fuzzy msgid "Chart title" -msgstr "Titlul diagramei" +msgstr "Titlu diagramă" #. l10n: As in differential values #: js/messages.php:255 -#, fuzzy msgid "Differential" msgstr "Diferențial" #: js/messages.php:256 -#, fuzzy, php-format +#, php-format msgid "Divided by %s" msgstr "Împărțit la %s" #: js/messages.php:257 -#, fuzzy msgid "Unit" msgstr "Unitate" #: js/messages.php:259 -#, fuzzy msgid "From slow log" -msgstr "Din log-ul cu înregistrări lente" +msgstr "Din jurnalul lent" #: js/messages.php:260 -#, fuzzy msgid "From general log" msgstr "Din jurnalul general" #: js/messages.php:262 -#, fuzzy msgid "The database name is not known for this query in the server's logs." msgstr "" -"Numele bazei de date nu este cunoscut pentru această interogare în log-urile " -"server-ului." +"Numele bazei de date este necunoscut pentru această interogare în jurnalele " +"serverului." #: js/messages.php:264 -#, fuzzy msgid "Analysing logs" -msgstr "Se analizează jurnalele" +msgstr "Analizez jurnalele" #: js/messages.php:266 -#, fuzzy msgid "Analysing & loading logs. This may take a while." -msgstr "Se analizează și se încarcă jurnalele. Poate dura o vreme." +msgstr "Analizez și încarc jurnalele. Asta poate dura ceva timp." #: js/messages.php:267 -#, fuzzy msgid "Cancel request" msgstr "Anulează cererea" #: js/messages.php:269 -#, fuzzy msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -"Această coloana afișează numărul de interogări identice grupate împreună. " -"Totuși, doar interogarea SQL a fost folosită ca criteriu de grupare, așa că " -"celelalte atribute ale interogărilor, cum ar fi timpul de pornire, pot fi " -"diferite." +"Această coloana arată numărul de interogări identice care sunt grupate " +"împreună. Totuși, numai interogarea SQL în sine a fost folosită drept " +"criteriu de grupare, așa că celelalte atribute ale interogărilor, cum ar fi " +"ora de pornire, pot să difere." #: js/messages.php:274 -#, fuzzy msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -"Din moment ce gruparea interogărilor INSERT a fost aleasă, interogările " -"INSERT în același tabel sunt și ele grupate împreună, indiferent de datele " -"inserate." +"Deoarece a fost selectată gruparea interogărilor INSERT, interogările INSERT " +"din același tabel sunt și ele grupate împreună, ignorând datele introduse." #: js/messages.php:279 -#, fuzzy msgid "Log data loaded. Queries executed in this time span:" -msgstr "" -"Datele din jurnal au fost încărcate. Interogările executate în acest " -"inverval de timp:" +msgstr "Date jurnal încărcate. Interogări executate în acest interval de timp:" #: js/messages.php:281 -#, fuzzy msgid "Jump to Log table" -msgstr "Mergi la jurnal" +msgstr "Sari la tabelul Jurnal" #: js/messages.php:282 -#, fuzzy msgid "No data found" -msgstr "Nu s-au găsit date" +msgstr "N-am găsit date" #: js/messages.php:284 -#, fuzzy msgid "Log analysed, but no data found in this time span." -msgstr "Jurnal analizat, dar nu au fost găsite date în acest interval de timp." +msgstr "Jurnal analizat, dar n-am găsit date în acest interval de timp." #: js/messages.php:286 -#, fuzzy msgid "Analyzing…" -msgstr "Se analizează…" +msgstr "Analizez…" #: js/messages.php:287 -#, fuzzy msgid "Explain output" -msgstr "Explică rezultatul" +msgstr "Explică ieșirea" #: js/messages.php:288 libraries/classes/Menu.php:578 #: libraries/classes/Rte/Events.php:413 libraries/classes/Rte/RteList.php:116 @@ -1757,7 +1538,6 @@ msgstr "Explică rezultatul" #: libraries/classes/Tracking.php:161 libraries/classes/Util.php:3959 #: libraries/config.values.php:105 #: templates/database/tracking/tracked_tables.twig:15 -#, fuzzy msgid "Status" msgstr "Stare" @@ -1769,93 +1549,74 @@ msgstr "Stare" #: libraries/classes/Rte/RteList.php:105 #: libraries/classes/Server/Status/Processes.php:97 #: libraries/classes/Sql.php:259 -#, fuzzy msgid "Time" -msgstr "Timp" +msgstr "Oră" #: js/messages.php:290 -#, fuzzy msgid "Total time:" msgstr "Timp total:" #: js/messages.php:291 -#, fuzzy msgid "Profiling results" -msgstr "Se profilează rezultatele" +msgstr "Profilez rezultatele" #: js/messages.php:292 -#, fuzzy msgctxt "Display format" msgid "Table" msgstr "Tabel" #: js/messages.php:293 -#, fuzzy msgid "Chart" msgstr "Diagramă" #: js/messages.php:295 libraries/classes/Display/Export.php:566 -#, fuzzy -#| msgid "Database" msgctxt "Alias" msgid "Database" msgstr "Bază de date" #: js/messages.php:296 libraries/classes/Display/Export.php:578 -#, fuzzy -#| msgid "Table" msgctxt "Alias" msgid "Table" msgstr "Tabel" #: js/messages.php:297 libraries/classes/Display/Export.php:589 -#, fuzzy msgctxt "Alias" msgid "Column" msgstr "Coloană" #. l10n: A collection of available filters #: js/messages.php:300 -#, fuzzy -#| msgid "Tables display options" msgid "Log table filter options" -msgstr "Opțiuni filtru tabelă de jurnal" +msgstr "Opțiuni filtrare tabel jurnal" #. l10n: Filter as in "Start Filtering" #: js/messages.php:302 -#, fuzzy msgid "Filter" -msgstr "Filtru" +msgstr "Filtrare" #: js/messages.php:303 -#, fuzzy msgid "Filter queries by word/regexp:" -msgstr "Filtrează interogări dupa cuvânt / expresie regulată:" +msgstr "Filtrează interogările după cuvântul/expresia obișnuită:" #: js/messages.php:305 -#, fuzzy msgid "Group queries, ignoring variable data in WHERE clauses" -msgstr "Grupează interogări, ignorând datele din variabilele din clauza WHERE" +msgstr "Grupează interogările, ignorând datele variabile din clauzele UNDE" #: js/messages.php:306 -#, fuzzy msgid "Sum of grouped rows:" -msgstr "Suma rândurilor grupate:" +msgstr "Sumă rânduri grupate:" #: js/messages.php:307 -#, fuzzy msgid "Total:" msgstr "Total:" #: js/messages.php:309 -#, fuzzy msgid "Loading logs" -msgstr "Se încarcă jurnalele" +msgstr "Încarc jurnale" #: js/messages.php:310 -#, fuzzy msgid "Monitor refresh failed" -msgstr "Reîncărcarea monitorului a eșuat" +msgstr "Reîmprospătarea monitorizării a eșuat" #: js/messages.php:312 #, fuzzy @@ -1869,29 +1630,25 @@ msgstr "" "sesiunea. Reîncărcarea paginii şi reautentificarea ar trebui să ajute." #: js/messages.php:316 -#, fuzzy msgid "Reload page" msgstr "Reîncarcă pagina" #: js/messages.php:318 -#, fuzzy msgid "Affected rows:" msgstr "Rânduri afectate:" #: js/messages.php:321 -#, fuzzy msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -"Parcurgere afișierului de configurare a eșuat. Codul JSON nu pare să fie " -"valid." +"Interpretarea fișierului de configurare a eșuat. Se pare că nu este un cod " +"JSON valid." #: js/messages.php:324 -#, fuzzy msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -"Nu a reuşit construirea diagramei cu datele ce au fost importate. Revin la " -"configuraţia iniţială…" +"Construirea grilei de diagrame cu configurarea importată a eșuat. Resetez la " +"configurarea implicită…" #: js/messages.php:326 libraries/classes/Config/Forms/User/ImportForm.php:58 #: libraries/classes/Menu.php:385 libraries/classes/Menu.php:487 @@ -1900,81 +1657,64 @@ msgstr "" #: libraries/classes/Util.php:3962 libraries/classes/Util.php:3977 #: libraries/classes/Util.php:3994 prefs_manage.php:226 #: templates/display/import/import.twig:38 -#, fuzzy msgid "Import" -msgstr "Import" +msgstr "Importă" #: js/messages.php:327 -#, fuzzy msgid "Import monitor configuration" -msgstr "Importă configuraţie pentru monitor" +msgstr "Importă configurarea monitorizării" #: js/messages.php:329 -#, fuzzy msgid "Please select the file you want to import." -msgstr "Alegeți fișierul care doriți să fie importat." +msgstr "Te rog selectează fișierul pe care vrei să-l imporți." #: js/messages.php:330 -#, fuzzy msgid "No files available on server for import!" -msgstr "Nu sunt fișiere disponibile pe server pentru import!" +msgstr "Nu este disponibil pe server niciun fișier pentru import!" #: js/messages.php:332 -#, fuzzy -#| msgid "Analyse Query" msgid "Analyse query" msgstr "Analizează interogarea" #: js/messages.php:336 -#, fuzzy msgid "Advisor system" -msgstr "Consilier de sistem" +msgstr "Sistem de consultanță" #: js/messages.php:337 -#, fuzzy msgid "Possible performance issues" -msgstr "Posibile probleme de performanță" +msgstr "Probleme de performanță posibile" #: js/messages.php:338 -#, fuzzy msgid "Issue" msgstr "Problemă" #: js/messages.php:339 -#, fuzzy msgid "Recommendation" msgstr "Recomandare" #: js/messages.php:340 -#, fuzzy msgid "Rule details" msgstr "Detalii regulă" #: js/messages.php:341 -#, fuzzy msgid "Justification" msgstr "Justificare" #: js/messages.php:342 -#, fuzzy msgid "Used variable / formula" -msgstr "Variabilă / formulă folosită" +msgstr "Variabilă/formulă folosită" #: js/messages.php:343 -#, fuzzy msgid "Test" msgstr "Test" #: js/messages.php:346 -#, fuzzy msgid "Formatting SQL…" -msgstr "Formatare SQL…" +msgstr "Formatez SQL…" #: js/messages.php:347 -#, fuzzy -#| msgid "Bad parameters!" msgid "No parameters found!" -msgstr "Nu s-au găsit parametri" +msgstr "Niciun parametru găsit!" #: js/messages.php:351 #: templates/database/designer/aggregate_query_panel.twig:64 @@ -1985,58 +1725,45 @@ msgstr "Nu s-au găsit parametri" #: templates/database/designer/having_query_panel.twig:118 #: templates/database/designer/options_panel.twig:255 #: templates/server/variables/link_template.twig:5 -#, fuzzy msgid "Cancel" -msgstr "Renunță" +msgstr "Anulează" #: js/messages.php:354 libraries/classes/Header.php:453 -#, fuzzy -#| msgid "Change settings" msgid "Page-related settings" -msgstr "Setările legate de pagină" +msgstr "Setări legate de pagini" #: js/messages.php:355 templates/config/form_display/fieldset_bottom.twig:8 -#, fuzzy msgid "Apply" msgstr "Aplică" #: js/messages.php:358 libraries/classes/Navigation/NavigationHeader.php:61 #: libraries/classes/Server/Status/Monitor.php:130 -#, fuzzy msgid "Loading…" -msgstr "Încărcare…" +msgstr "Încarc…" #: js/messages.php:359 -#, fuzzy -#| msgid "Request Aborted!!" msgid "Request aborted!!" -msgstr "Cerere terminată!" +msgstr "Cerere anulată!" #: js/messages.php:360 -#, fuzzy -#| msgid "Processing Request" msgid "Processing request" -msgstr "Se procesează cererea" +msgstr "Procesez cererea" #: js/messages.php:361 -#, fuzzy -#| msgid "Request Aborted!!" msgid "Request failed!!" -msgstr "Solicitare nereușită" +msgstr "Cerere eșuată!" #: js/messages.php:362 -#, fuzzy -#| msgid "Error in processing request" msgid "Error in processing request" -msgstr "Eroare în procesarea cererii" +msgstr "Eroare la procesarea cererii" #: js/messages.php:363 -#, fuzzy, php-format +#, php-format msgid "Error code: %s" msgstr "Cod eroare: %s" #: js/messages.php:364 -#, fuzzy, php-format +#, php-format msgid "Error text: %s" msgstr "Text eroare: %s" @@ -2045,31 +1772,26 @@ msgid "" "It seems that the connection to server has been lost. Please check your " "network connectivity and server status." msgstr "" +"Se pare că a fost pierdută conexiunea la server. Te rog verifică " +"conectivitatea rețelei și starea serverului." #: js/messages.php:369 #: libraries/classes/Controllers/Server/ServerDatabasesController.php:188 #: libraries/db_common.inc.php:72 libraries/db_table_exists.inc.php:34 -#, fuzzy msgid "No databases selected." -msgstr "Nu a fost aleasă nici o bază de date." +msgstr "Nicio bază de date selectată." #: js/messages.php:370 -#, fuzzy -#| msgid "No column selected." msgid "No accounts selected." -msgstr "Nicio coloană aleasă." +msgstr "Niciun cont selectat." #: js/messages.php:371 -#, fuzzy -#| msgid "Dropping Column" msgid "Dropping column" -msgstr "Se aruncă coloana" +msgstr "Elimin coloana" #: js/messages.php:372 -#, fuzzy -#| msgid "Add primary key" msgid "Adding primary key" -msgstr "Adaugă cheie primară" +msgstr "Adaug cheia principală" #: js/messages.php:373 #: templates/database/designer/aggregate_query_panel.twig:60 @@ -2079,75 +1801,59 @@ msgstr "Adaugă cheie primară" #: templates/database/designer/where_query_panel.twig:83 #: templates/database/designer/having_query_panel.twig:114 #: templates/database/designer/options_panel.twig:253 -#, fuzzy msgid "OK" -msgstr "Bine" +msgstr "OK" #: js/messages.php:374 -#, fuzzy msgid "Click to dismiss this notification" -msgstr "Apăsați pentru a înlătura această notificare" +msgstr "Dă clic pentru a respinge această notificare" #: js/messages.php:377 -#, fuzzy -#| msgid "Renaming Databases" msgid "Renaming databases" -msgstr "Se redenumesc bazele de date" +msgstr "Redenumesc bazele de date" #: js/messages.php:378 -#, fuzzy -#| msgid "Copying Database" msgid "Copying database" -msgstr "Se copiază baza de date" +msgstr "Copiez baza de date" #: js/messages.php:379 -#, fuzzy -#| msgid "Changing Charset" msgid "Changing charset" -msgstr "Se schimbă setul de caractere" +msgstr "Schimb setul de caractere" #: js/messages.php:383 templates/fk_checkbox.twig:4 -#, fuzzy msgid "Enable foreign key checks" -msgstr "Activare de verificări cheie străine" +msgstr "Activează verificările cheilor străine" #: js/messages.php:386 -#, fuzzy msgid "Failed to get real row count." -msgstr "Nu pot obţine numărul real de rânduri." +msgstr "Obținerea numărul real de rânduri a eșuat." #: js/messages.php:389 -#, fuzzy msgid "Searching" -msgstr "Se caută" +msgstr "Caut" #: js/messages.php:390 -#, fuzzy msgid "Hide search results" -msgstr "Ascunde rezultatele căutării" +msgstr "Ascunde rezultatele de căutare" #: js/messages.php:391 -#, fuzzy msgid "Show search results" -msgstr "Afișează rezultatele căutării" +msgstr "Afișează rezultatele de căutare" #: js/messages.php:392 -#, fuzzy msgid "Browsing" -msgstr "Răsfoire" +msgstr "Răsfoiesc" #: js/messages.php:393 -#, fuzzy msgid "Deleting" -msgstr "Ștergere" +msgstr "Șterg" #: js/messages.php:394 -#, fuzzy, php-format +#, php-format msgid "Delete the matches for the %s table?" -msgstr "Ștergeți potrivirile pentru tabelul %s?" +msgstr "Ștergi potrivirile pentru tabelul %s?" #: js/messages.php:398 -#, fuzzy msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definiția unei funcții stocate trebuie să conțină o declarație RETURN!" @@ -2166,54 +1872,48 @@ msgstr "Definiția unei funcții stocate trebuie să conțină o declarație RET #: libraries/classes/Util.php:3993 prefs_manage.php:292 #: templates/database/structure/check_all_tables.twig:12 #: templates/display/export/option_header.twig:3 -#, fuzzy msgid "Export" msgstr "Exportă" #: js/messages.php:401 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" +"Nicio rutină nu poate fi exportată. Pot să lipsească privilegiile necesare." #: js/messages.php:404 libraries/classes/Rte/Routines.php:760 -#, fuzzy msgid "ENUM/SET editor" msgstr "Editor ENUM/SET" #: js/messages.php:405 -#, fuzzy, php-format +#, php-format msgid "Values for column %s" msgstr "Valori pentru coloana %s" #: js/messages.php:406 -#, fuzzy msgid "Values for a new column" msgstr "Valori pentru o coloană nouă" #: js/messages.php:407 -#, fuzzy msgid "Enter each value in a separate field." -msgstr "Introduceți fiecare valoare într-un câmp separat." +msgstr "Introdu fiecare valoare într-un câmp separat." #: js/messages.php:408 -#, fuzzy, php-format +#, php-format msgid "Add %d value(s)" -msgstr "Se adaugă %d valore(i)" +msgstr "Adaugă o valoare (%d valori)" #: js/messages.php:412 -#, fuzzy msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -"Notă: Dacă fișierul conține mai multe tabele, acestea vor fi combinate într-" -"unul singur." +"Notă: Dacă fișierul conține mai multe tabele, ele vor fi combinate într-unul " +"singur." #: js/messages.php:416 -#, fuzzy msgid "Hide query box" msgstr "Ascunde caseta de interogare" #: js/messages.php:417 -#, fuzzy msgid "Show query box" msgstr "Arată caseta de interogare" @@ -2229,9 +1929,8 @@ msgstr "Arată caseta de interogare" #: templates/console/bookmark_content.twig:7 #: templates/server/variables/variable_row.twig:4 #: templates/server/variables/variable_row.twig:7 -#, fuzzy msgid "Edit" -msgstr "Modifică" +msgstr "Editează" #: js/messages.php:419 libraries/classes/CentralColumns.php:936 #: libraries/classes/CentralColumns.php:1289 @@ -2244,204 +1943,174 @@ msgstr "Modifică" #: templates/database/search/results.twig:43 #: templates/display/export/template_loading.twig:22 #: templates/console/bookmark_content.twig:7 -#, fuzzy msgid "Delete" msgstr "Șterge" #: js/messages.php:420 libraries/classes/Display/Results.php:930 #: libraries/classes/Display/Results.php:938 -#, fuzzy, php-format +#, php-format msgid "%d is not valid row number." -msgstr "%d nu este un număr valid de rânduri." +msgstr "%d nu este un număr de rând valid." #: js/messages.php:421 #: libraries/classes/Controllers/Table/TableSearchController.php:359 #: libraries/classes/Controllers/Table/TableSearchController.php:854 #: libraries/classes/Sql.php:214 tbl_change.php:141 -#, fuzzy msgid "Browse foreign values" -msgstr "Caută printre valori necunoscute" +msgstr "Răsfoiește valorile străine" #: js/messages.php:422 -#, fuzzy msgid "No auto-saved query" -msgstr "Nicio interogare salvată" +msgstr "Nicio interogare salvată automat" #: js/messages.php:423 -#, fuzzy, php-format +#, php-format msgid "Variable %d:" msgstr "Variabila %d:" #: js/messages.php:426 libraries/classes/Normalization.php:961 -#, fuzzy msgid "Pick" msgstr "Alege" #: js/messages.php:427 -#, fuzzy msgid "Column selector" -msgstr "Selectorul de coloană" +msgstr "Selector de coloană" #: js/messages.php:428 -#, fuzzy msgid "Search this list" -msgstr "Caută în această listă" +msgstr "Caută această listă" #: js/messages.php:430 -#, fuzzy, php-format +#, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -"Nu sunt coloane în lista centrală. Asiguraţi-vă că lista de coloane centrale " +"Nicio coloană în lista centrală. Asigură-te că lista de coloane centrală " "pentru baza de date %s are coloane care nu sunt prezente în tabelul curent." #: js/messages.php:433 -#, fuzzy msgid "See more" msgstr "Vezi mai mult" #: js/messages.php:434 -#, fuzzy msgid "Are you sure?" -msgstr "Sunteți sigur?" +msgstr "Sigur?" #: js/messages.php:436 -#, fuzzy msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -"Această acţiune poate modifica definiţia anumitor coloane.
Sunteţi sigur " -"că doriţi să continuaţi?" +"Această acțiune poate modifica definiția unor coloane.
Sigur vrei să " +"continui?" #: js/messages.php:439 -#, fuzzy msgid "Continue" msgstr "Continuă" #: js/messages.php:442 -#, fuzzy msgid "Add primary key" -msgstr "Adaugă cheie primară" +msgstr "Adaugă cheia principală" #: js/messages.php:443 -#, fuzzy msgid "Primary key added." -msgstr "Cheia primară a fost adăugată." +msgstr "Cheie principală adăugată." #: js/messages.php:444 libraries/classes/Normalization.php:236 -#, fuzzy msgid "Taking you to next step…" -msgstr "Continuați cu pasul următor…" +msgstr "Te duc la pasul următor…" #: js/messages.php:446 -#, fuzzy, php-format +#, php-format msgid "The first step of normalization is complete for table '%s'." -msgstr "Primul pas de normalizare este complet pentru tabela '%s'." +msgstr "Primul pas de normalizare este finalizat pentru tabelul „%s”." #: js/messages.php:447 libraries/classes/Normalization.php:504 #: libraries/classes/Normalization.php:551 #: libraries/classes/Normalization.php:637 #: libraries/classes/Normalization.php:701 -#, fuzzy msgid "End of step" -msgstr "Sfârşitul pasului" +msgstr "Sfârșitul pasului" #: js/messages.php:448 -#, fuzzy msgid "Second step of normalization (2NF)" msgstr "Al doilea pas de normalizare (2NF)" #. l10n: Display text for calendar close link #: js/messages.php:449 js/messages.php:772 #: libraries/classes/Normalization.php:334 -#, fuzzy msgid "Done" msgstr "Gata" #: js/messages.php:450 -#, fuzzy msgid "Confirm partial dependencies" -msgstr "Confirmați dependenţele parţiale" +msgstr "Confirmă dependențele parțiale" #: js/messages.php:451 -#, fuzzy msgid "Selected partial dependencies are as follows:" -msgstr "Dependenţe parţiale selectate sunt după cum urmează:" +msgstr "Dependențele parțiale selectate sunt următoarele:" #: js/messages.php:453 -#, fuzzy msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -"Notă: a, b -> d, f presupune ca valorile coloanelor a şi b combinate " -"împreună să poată determina valorile din coloana d şi coloana f." +"Notă: a, b -> d, f înseamnă că valorile coloanelor a și b combinate împreună " +"pot determina valorile coloanei d și coloanei f." #: js/messages.php:456 -#, fuzzy msgid "No partial dependencies selected!" -msgstr "Nici o dependenţă parţială selectată!" +msgstr "Nicio dependență parțială selectată!" #: js/messages.php:459 -#, fuzzy msgid "Show me the possible partial dependencies based on data in the table" -msgstr "Arată-mi posibile dependenţe parţiale pe baza datelor din tabel" +msgstr "Arată-mi posibile dependențe parțiale pe baza datelor din tabel" #: js/messages.php:460 -#, fuzzy msgid "Hide partial dependencies list" -msgstr "Ascunde lista dependenţelor parţiale" +msgstr "Ascunde lista dependențelor parțiale" #: js/messages.php:462 -#, fuzzy msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -"Fiți răbdător! Poate dura câteva secunde în funcţie de dimensiunea datelor " -"şi numărul coloanelor tabelului." +"Ai răbdare! Poate dura câteva secunde în funcție de cantitatea de date și " +"numărul de coloane din tabel." #: js/messages.php:465 -#, fuzzy msgid "Step" msgstr "Pas" #: js/messages.php:467 -#, fuzzy msgid "The following actions will be performed:" -msgstr "Vor fi efectuate următoarele acţiuni:" +msgstr "Vor fi efectuate următoarele acțiuni:" #: js/messages.php:468 -#, fuzzy, php-format +#, php-format msgid "DROP columns %s from the table %s" -msgstr "Șterge coloanele %s din tabelul %s" +msgstr "Elimină coloanele %s din tabelul %s" #: js/messages.php:469 -#, fuzzy msgid "Create the following table" -msgstr "Creaţi tabelul următor" +msgstr "Creează tabelul următor" #: js/messages.php:472 -#, fuzzy msgid "Third step of normalization (3NF)" msgstr "Al treilea pas de normalizare (3NF)" #: js/messages.php:473 -#, fuzzy msgid "Confirm transitive dependencies" -msgstr "Confirmați dependenţele tranzitive" +msgstr "Confirmă dependențele tranzitive" #: js/messages.php:474 -#, fuzzy msgid "Selected dependencies are as follows:" -msgstr "Dependenţe selectate sunt după cum urmează:" +msgstr "Dependențele selectate sunt următoarele:" #: js/messages.php:475 -#, fuzzy msgid "No dependencies selected!" -msgstr "Nici o dependenţă selectată!" +msgstr "Nicio dependență selectată!" #: js/messages.php:478 libraries/classes/CentralColumns.php:1305 #: libraries/classes/InsertEdit.php:1802 @@ -2450,153 +2119,124 @@ msgstr "Nici o dependenţă selectată!" #: templates/table/gis_visualization/gis_visualization.twig:48 #: templates/table/relation/common_form.twig:189 #: templates/server/variables/link_template.twig:2 -#, fuzzy msgid "Save" msgstr "Salvează" #: js/messages.php:481 -#, fuzzy msgid "Hide search criteria" -msgstr "Ascunde criteriile de căutare" +msgstr "Ascunde criteriul de căutare" #: js/messages.php:482 -#, fuzzy msgid "Show search criteria" -msgstr "Afișează criteriile de căutare" +msgstr "Arată criteriul de căutare" #: js/messages.php:483 -#, fuzzy msgid "Range search" -msgstr "Intervalul de căutare" +msgstr "Interval de căutare" #: js/messages.php:484 -#, fuzzy msgid "Column maximum:" -msgstr "Maximul coloanei:" +msgstr "Maxim coloană:" #: js/messages.php:485 -#, fuzzy msgid "Column minimum:" -msgstr "Minimul coloanei:" +msgstr "Minim coloană:" #: js/messages.php:486 -#, fuzzy msgid "Minimum value:" -msgstr "Valorea minimă:" +msgstr "Valoare minimă:" #: js/messages.php:487 -#, fuzzy msgid "Maximum value:" -msgstr "Valorea maximă:" +msgstr "Valoare maximă:" #: js/messages.php:490 -#, fuzzy msgid "Hide find and replace criteria" -msgstr "Ascunde criteriile de căutare și înlocuire" +msgstr "Ascunde criteriul găsește și înlocuiește" #: js/messages.php:491 -#, fuzzy msgid "Show find and replace criteria" -msgstr "Afișează criteriile de căutare și înlocuire" +msgstr "Arată criteriul găsește și înlocuiește" #: js/messages.php:495 -#, fuzzy msgid "Each point represents a data row." msgstr "Fiecare punct reprezintă un rând de date." #: js/messages.php:497 -#, fuzzy msgid "Hovering over a point will show its label." -msgstr "Ducând mouse-ul deasupra unui punct, i se va afișa eticheta." +msgstr "La trecerea peste un punct, i se va afișa eticheta." #: js/messages.php:499 -#, fuzzy msgid "To zoom in, select a section of the plot with the mouse." -msgstr "Pentru a mări, selectaţi o secţiune cu mouse-ul." +msgstr "Pentru a mări, selectează o secțiune a plotului cu mausul." #: js/messages.php:501 -#, fuzzy msgid "Click reset zoom button to come back to original state." msgstr "" -"Faceţi click pe butonul de resetare zoom pentru a reveni la starea iniţială." +"Dă clic pe pe butonul de resetare a măririi pentru a reveni la starea " +"inițială." #: js/messages.php:503 -#, fuzzy msgid "Click a data point to view and possibly edit the data row." msgstr "" -"Apăsați pe un punct de date pentru a vedea sau chiar a edita rândul de date." +"Dă clic pe un punct de date pentru a vedea sau chiar edita rândul de date." #: js/messages.php:505 -#, fuzzy msgid "The plot can be resized by dragging it along the bottom right corner." -msgstr "Afişarea poate fi modificată trăgând de colțul din dreapta jos." +msgstr "Plotul poate fi redimensionat trăgând de colțul din dreapta jos." #: js/messages.php:508 -#, fuzzy msgid "Select two columns" -msgstr "Alege două coloane" +msgstr "Selectează două coloane" #: js/messages.php:510 -#, fuzzy msgid "Select two different columns" -msgstr "Alege două coloane diferite" +msgstr "Selectează două coloane diferite" #: js/messages.php:512 -#, fuzzy -#| msgid "Data pointer size" msgid "Data point content" -msgstr "Conţinut de punct de date" +msgstr "Conținut punct de date" #: js/messages.php:515 js/messages.php:682 js/messages.php:699 #: libraries/classes/ErrorHandler.php:371 libraries/classes/InsertEdit.php:2970 #: templates/table/index_form.twig:141 templates/table/index_form.twig:177 -#, fuzzy msgid "Ignore" msgstr "Ignoră" #: js/messages.php:516 libraries/classes/Display/Results.php:3329 #: libraries/classes/Display/Results.php:4690 -#, fuzzy msgid "Copy" msgstr "Copiază" #: js/messages.php:519 -#, fuzzy msgid "Point" msgstr "Punct" #: js/messages.php:521 -#, fuzzy msgid "Linestring" -msgstr "Linii terminate de" +msgstr "Șir de linii" #: js/messages.php:522 -#, fuzzy msgid "Polygon" msgstr "Poligon" #: js/messages.php:523 templates/display/results/options_block.twig:77 -#, fuzzy msgid "Geometry" msgstr "Geometrie" #: js/messages.php:524 -#, fuzzy msgid "Inner ring" msgstr "Inel interior" #: js/messages.php:525 -#, fuzzy msgid "Outer ring" -msgstr "Inelul exterior" +msgstr "Inel exterior" #: js/messages.php:529 -#, fuzzy msgid "Do you want to copy encryption key?" -msgstr "Doriți să copiați cheia de criptare?" +msgstr "Vrei să copiezi cheia de criptare?" #: js/messages.php:530 -#, fuzzy msgid "Encryption key" msgstr "Cheie de criptare" @@ -2605,490 +2245,403 @@ msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" msgstr "" +"MySQL acceptă valori suplimentare care nu pot fi selectate prin cursor; " +"tastează direct aceste valori, dacă le vrei" #: js/messages.php:540 msgid "" "MySQL accepts additional values not selectable by the datepicker; key in " "those values directly if desired" msgstr "" +"MySQL acceptă valori suplimentare care nu pot fi selectate prin selectorul " +"de date; tastează direct aceste valori, dacă le vrei" #: js/messages.php:546 -#, fuzzy msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -"Indică că aţi făcut schimbări acestei pagini; o să vi se solicite " -"confirmarea înainte de a anula schimbările" +"Indică că ai făcut modificări în această pagină; ți se va cere confirmarea " +"înainte de abandonare" #: js/messages.php:551 -#, fuzzy msgid "Select referenced key" -msgstr "Alegere cheie referențiată" +msgstr "Selectează cheia de referință" #: js/messages.php:552 -#, fuzzy msgid "Select Foreign Key" -msgstr "Alegeți cheia străină" +msgstr "Selectează cheia străină" #: js/messages.php:554 -#, fuzzy msgid "Please select the primary key or a unique key!" -msgstr "Vă rugăm să alegeți cheia primară sau o cheie unică!" +msgstr "Te rog selectează cheia principală sau o cheie unică!" #: js/messages.php:555 templates/database/designer/side_menu.twig:92 #: templates/database/designer/side_menu.twig:95 -#, fuzzy msgid "Choose column to display" -msgstr "Selectează coloana pentru afișare" +msgstr "Alege coloana pentru afișare" #: js/messages.php:557 -#, fuzzy msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -"Nu ați salvat schimbarile în așezare. Ele vor fi pierdute dacă nu le " -"salvați. Doriți să continuați?" +"Nu ai salvat modificările în aranjament. Ele vor fi pierdute dacă nu le " +"salvezi. Vrei să continui?" #: js/messages.php:560 templates/database/designer/side_menu.twig:34 #: templates/database/designer/side_menu.twig:37 -#, fuzzy -#| msgid "No tables found in database." msgid "Add tables from other databases" -msgstr "Nu s-a găsit niciun tabel în baza de date." +msgstr "Adaugă tabele din alte baze de date" #: js/messages.php:561 -#, fuzzy msgid "Page name" -msgstr "Numele paginii" +msgstr "Nume pagină" #: js/messages.php:562 templates/database/designer/side_menu.twig:57 #: templates/database/designer/side_menu.twig:60 -#, fuzzy msgid "Save page" msgstr "Salvează pagina" #: js/messages.php:563 templates/database/designer/side_menu.twig:64 #: templates/database/designer/side_menu.twig:67 -#, fuzzy -#| msgid "Save page" msgid "Save page as" -msgstr "Salvează pagina" +msgstr "Salvează pagina ca" #: js/messages.php:564 templates/database/designer/side_menu.twig:50 #: templates/database/designer/side_menu.twig:53 -#, fuzzy msgid "Open page" -msgstr "Pagina de deschidere" +msgstr "Deschide pagina" #: js/messages.php:565 -#, fuzzy msgid "Delete page" msgstr "Șterge pagina" #: js/messages.php:566 templates/database/designer/side_menu.twig:4 -#, fuzzy -#| msgid "*Untitled" msgid "Untitled" -msgstr "*Fără titlu" +msgstr "Fără titlu" #: js/messages.php:567 -#, fuzzy msgid "Please select a page to continue" -msgstr "Selectează o pagină pentru a continua" +msgstr "Te rog selectează o pagină pentru a continua" #: js/messages.php:568 -#, fuzzy msgid "Please enter a valid page name" -msgstr "Introduceţi un nume valid pentru pagină" +msgstr "Te rog introdu un nume de pagină valid" #: js/messages.php:570 -#, fuzzy msgid "Do you want to save the changes to the current page?" -msgstr "Doriţi să salvaţi modificările aduse paginii curente?" +msgstr "Vrei să salvezi modificările în pagina actuală?" #: js/messages.php:571 -#, fuzzy msgid "Successfully deleted the page" -msgstr "Pagina a fost ștearsă cu succes" +msgstr "Pagină ștearsă cu succes" #: js/messages.php:572 -#, fuzzy msgid "Export relational schema" -msgstr "Exportați schema relațională" +msgstr "Exportă schema relațională" #: js/messages.php:573 -#, fuzzy msgid "Modifications have been saved" msgstr "Modificările au fost salvate" #: js/messages.php:576 -#, fuzzy, php-format +#, php-format msgid "Add an option for column \"%s\"." -msgstr "Adăugați o opțiune pentru coloana \"%s\"." +msgstr "Adaugă o opțiune pentru coloana „%s”." #: js/messages.php:577 -#, fuzzy, php-format +#, php-format msgid "%d object(s) created." -msgstr "%d obiect(e) creat(e)." +msgstr "Un obiect creat (%d obiecte create)." #: js/messages.php:578 libraries/classes/SqlQueryForm.php:419 -#, fuzzy msgid "Submit" msgstr "Trimite" #: js/messages.php:581 -#, fuzzy msgid "Press escape to cancel editing." -msgstr "Apăsați escape pentru a anula editarea." +msgstr "Apasă Esc pentru a anula editarea." #: js/messages.php:583 -#, fuzzy msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -"Ați editat unele date și acestea nu au fost salvate. Sigur vreți să părăsiți " -"această pagină fără să salvați datele?" +"Ai editat unele date și ele nu au fost salvate. Sigur vrei să părăsești " +"această pagină înainte de salvarea datele?" #: js/messages.php:586 -#, fuzzy msgid "Drag to reorder." -msgstr "Deplasați pentru a reordona." +msgstr "Trage pentru a reordona." #: js/messages.php:587 -#, fuzzy msgid "Click to sort results by this column." -msgstr "Click pentru a sorta rezultatele după această coloană." +msgstr "Dă clic pentru a sorta rezultatele după această coloană." #: js/messages.php:589 -#, fuzzy -#| msgid "" -#| "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC." -#| "
- Control+Click to remove column from ORDER BY clause" msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -"Shift+Click pentru a adăuga această coloană instrucțiunii ORDER BY sau " -"pentru a activa ASC/DESC.
-Control+Click pentru a îndepărta coloana " -"din instrucțiunea ORDER BY" +"Shift+Clic pentru a adăuga această coloană la ORDONEAZĂ DUPĂ sau pentru a " +"comuta ASC/DESC.
- Ctrl+Clic sau Alt+Clic (Mac: Shift+Option+Clic) " +"pentru a înlătura coloana din ORDONEAZĂ DUPĂ" #: js/messages.php:593 -#, fuzzy msgid "Click to mark/unmark." -msgstr "Click pentru a selecta/deselecta." +msgstr "Dă clic pentru a marca/anula marcarea." #: js/messages.php:594 -#, fuzzy msgid "Double-click to copy column name." -msgstr "Dublu click pentru a copia denumirea coloanei." +msgstr "Dă dublu clic pentru a copia numele coloanei." #: js/messages.php:596 -#, fuzzy msgid "Click the drop-down arrow
to toggle column's visibility." -msgstr "" -"Apăsați pe săgeata verticală
pentru a alterna vizibilitatea coloanei." +msgstr "Dă clic pe săgeată jos
pentru a comuta vizibilitatea coloanei." #: js/messages.php:598 libraries/classes/BrowseForeigners.php:340 #: templates/display/results/show_all_checkbox.twig:11 #: templates/privileges/initials_row.twig:20 #: templates/table/browse_foreigners/show_all.twig:4 -#, fuzzy msgid "Show all" msgstr "Arată tot" #: js/messages.php:600 -#, fuzzy msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -"Acest tabel nu coține o coloană unică. Funcțiile legate de editare grid, " -"checkbox, sau link-urile de Editare, Copiere si Ștergere pot să nu " -"funcționeze după salvare." +"Acest tabel nu conține o coloană unică. Funcționalitățile legate de " +"legăturile de editare grilă, bife, editare, copiere și ștergere ar putea să " +"nu funcționeze după salvare." #: js/messages.php:604 -#, fuzzy msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -"Vă rugăm să introduceţi un şir hexazecimal valid. Caracterele valide sunt 0-" -"9, A-F." +"Te rog introdu un șir hexazecimal valid. Caracterele valide sunt 0-9, A-F." #: js/messages.php:606 -#, fuzzy msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -"Sigur doriţi să vedeţi toate rândurile? Pentru un tabel mare aceasta poate " -"provoca crash-ul browser-ului." +"Chiar vrei să vezi toate rândurile? Un tabel foarte mare ar putea prăbuși " +"navigatorul." #: js/messages.php:609 -#, fuzzy -#| msgid "Original string" msgid "Original length" -msgstr "Textul original" +msgstr "Lungime originală" #: js/messages.php:612 -#, fuzzy msgid "cancel" msgstr "anulează" #: js/messages.php:613 libraries/classes/Server/Status.php:288 -#, fuzzy msgid "Aborted" -msgstr "Întrerupt" +msgstr "Anulată" #: js/messages.php:615 -#, fuzzy msgid "Success" msgstr "Succes" #: js/messages.php:616 -#, fuzzy msgid "Import status" -msgstr "Starea importului" +msgstr "Stare import" #: js/messages.php:617 libraries/classes/Navigation/Navigation.php:114 -#, fuzzy msgid "Drop files here" -msgstr "Dați drumul la fişiere aici" +msgstr "Aruncă fișiere aici" #: js/messages.php:618 -#, fuzzy msgid "Select database first" -msgstr "Selectaţi mai întâi baza de date" +msgstr "Mai întâi selectează baza de date" #: js/messages.php:621 libraries/classes/Display/Results.php:4871 #: libraries/classes/Util.php:3854 #: templates/table/structure/optional_action_links.twig:1 #: templates/database/structure/print_view_data_dictionary_link.twig:3 -#, fuzzy msgid "Print" -msgstr "Listare" +msgstr "Imprimare" #: js/messages.php:628 -#, fuzzy msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -"De asemenea puteți edita majoritatea valorilor
făcând dublu-click direct " -"pe acestea." +"De asemenea, poți edita majoritatea valorilor
dând dublu-clic direct pe " +"ele." #: js/messages.php:633 -#, fuzzy msgid "You can also edit most values
by clicking directly on them." msgstr "" -"De asemenea puteți edita majoritatea valorile
făcând click direct pe " -"acestea." +"De asemenea, poți edita majoritatea valorilor
dând clic direct pe ele." #: js/messages.php:639 -#, fuzzy msgid "Go to link:" -msgstr "Mergi la adresa link-ului:" +msgstr "Du-te la legătura:" #: js/messages.php:640 -#, fuzzy msgid "Copy column name." -msgstr "Copie denumirea coloanei." +msgstr "Copiază numele coloanei." #: js/messages.php:642 -#, fuzzy msgid "Right-click the column name to copy it to your clipboard." -msgstr "" -"Faceți click dreapta pe numele de coloană pentru a-l copia în clipboard." +msgstr "Dă clic dreapta pe numele coloanei pentru a-l copia în clipboard." #: js/messages.php:645 -#, fuzzy msgid "Generate password" -msgstr "Generează parolă" +msgstr "Generează parola" #: js/messages.php:646 libraries/classes/ReplicationGui.php:890 -#, fuzzy msgid "Generate" msgstr "Generează" #: js/messages.php:650 #: templates/table/structure/actions_in_table_structure.twig:4 -#, fuzzy msgid "More" msgstr "Mai mult" #: js/messages.php:653 -#, fuzzy -#| msgid "Show Panel" msgid "Show panel" -msgstr "Arată panou" +msgstr "Arată panoul" #: js/messages.php:654 -#, fuzzy -#| msgid "Hide Panel" msgid "Hide panel" -msgstr "Ascunde panou" +msgstr "Ascunde panoul" #: js/messages.php:655 -#, fuzzy msgid "Show hidden navigation tree items." -msgstr "Afişează itemii ascunşi din arborele din cadrul din stânga." +msgstr "Arată elementele de navigare ascunse." #: js/messages.php:656 libraries/classes/Config/Descriptions.php:778 #: libraries/classes/Navigation/NavigationTree.php:1431 -#, fuzzy msgid "Link with main panel" -msgstr "Link-ul cu panoul principal" +msgstr "Leagă la panoul principal" #: js/messages.php:657 libraries/classes/Navigation/NavigationTree.php:1434 -#, fuzzy msgid "Unlink from main panel" -msgstr "Deconectarea de la panoul principal" +msgstr "Anulează legătura din panoul principal" #: js/messages.php:661 -#, fuzzy msgid "The requested page was not found in the history, it may have expired." msgstr "" -"Pagina solicitată nu a fost găsită în istorie, este posibil ca acesta să fi " -"expirat." +"Pagina solicitată nu a fost găsită în istoric, este posibil să fi expirat." #: js/messages.php:665 setup/lib/Index.php:171 -#, fuzzy, php-format +#, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"O nouă versiune a phpMyAdmin este disponibilă și vă recomandam să inițiați " -"procesul de actualizare. Noua versiune %s a fost publicată în data de %s." +"Este disponibilă o nouă versiune a phpMyAdmin și ar trebui să faci " +"actualizarea. Noua versiune %s a fost lansată pe %s." #. l10n: Latest available phpMyAdmin version #: js/messages.php:669 -#, fuzzy msgid ", latest stable version:" msgstr ", ultima versiune stabilă:" #: js/messages.php:670 -#, fuzzy msgid "up to date" msgstr "la zi" #: js/messages.php:672 libraries/classes/Display/Results.php:4805 #: templates/view_create.twig:11 -#, fuzzy msgid "Create view" -msgstr "Creare view" +msgstr "Creează vizualizarea" #: js/messages.php:675 -#, fuzzy -#| msgid "Server port" msgid "Send error report" -msgstr "Portul serverului" +msgstr "Trimite raportul de erori" #: js/messages.php:676 -#, fuzzy -#| msgid "Submit Error Report" msgid "Submit error report" -msgstr "Trimite raport de eroare" +msgstr "Trimite raportul de erori" #: js/messages.php:678 -#, fuzzy msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -"A apărut o eroare JavaScript fatală. Doriți să trimiteți un raport de eroare?" +"A apărut o eroare JavaScript fatală. Vrei să trimiți un raport de erori?" #: js/messages.php:680 -#, fuzzy -#| msgid "Change Report Settings" msgid "Change report settings" -msgstr "Modificați setările rapoartelor" +msgstr "Modifică setări rapoarte" #: js/messages.php:681 -#, fuzzy -#| msgid "Show Report Details" msgid "Show report details" -msgstr "Afișează detaliile raportului" +msgstr "Arată detalii raport" #: js/messages.php:684 -#, fuzzy msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" -msgstr "Exportul este incomplet din cauza timpului de executie redus al PHP!" +msgstr "" +"Exportul tău este incomplet din cauza unei limite de execuție reduse la " +"nivel de PHP!" #: js/messages.php:688 -#, fuzzy, php-format +#, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -"Avertisment: o formă din această pagină are mai mult de %d câmpuri. La " -"trimiterea datelor, unele câmpuri pot fi ignorate datorită configurației " +"Avertizare: un formular din această pagină are mai mult de %d câmpuri. La " +"trimitere, unele dintre câmpuri pot fi ignorate datorită configurării PHP " "max_input_vars." #: js/messages.php:694 js/messages.php:707 -#, fuzzy msgid "Some errors have been detected on the server!" -msgstr "Anumite erori au fost detectate pe server!" +msgstr "Au fost detectate unele erori pe server!" #: js/messages.php:696 -#, fuzzy msgid "Please look at the bottom of this window." -msgstr "Vă rugăm să vă uitați la partea de jos a acestei ferestre." +msgstr "Te rog uită-te în partea de jos a acestei ferestre." #: js/messages.php:702 libraries/classes/ErrorHandler.php:375 -#, fuzzy msgid "Ignore All" msgstr "Ignoră tot" #: js/messages.php:710 -#, fuzzy msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -"În ceea ce privește setările dumneavoastră, aceste sunt trimise momentan, vă " -"rugăm să aveți răbdare." +"În funcție de setările tale, aceste sunt trimise acum, te rog ai răbdare." #: js/messages.php:720 -#, fuzzy msgid "Execute this query again?" -msgstr "Executați această interogare din nou?" +msgstr "Execuți această interogare din nou?" #: js/messages.php:722 -#, fuzzy msgid "Do you really want to delete this bookmark?" -msgstr "Sigur doriți să ştergeţi acest marcaj?" +msgstr "Sigur vrei să ștergi acest semn de carte?" #: js/messages.php:724 -#, fuzzy msgid "Some error occurred while getting SQL debug info." -msgstr "A avut loc o eroare la obţinerea informaţiilor SQL de debug." +msgstr "Au apărut erori în timpul obținerii informațiilor de depanare SQL." #: js/messages.php:726 -#, fuzzy, php-format +#, php-format msgid "%s queries executed %s times in %s seconds." -msgstr "Comanda SQL" +msgstr "%s interogări executate de %s ori în %s secunde." #: js/messages.php:727 -#, fuzzy, php-format +#, php-format msgid "%s argument(s) passed" -msgstr "%s argument(e) trimise" +msgstr "Un argument trecut (%s argumente trecute)" #: js/messages.php:728 -#, fuzzy -#| msgid "Table comments" msgid "Show arguments" -msgstr "Comentarii tabel" +msgstr "Arată argumente" #: js/messages.php:729 -#, fuzzy -#| msgid "Hide search results" msgid "Hide arguments" -msgstr "Ascunde rezultatele căutării" +msgstr "Ascunde argumente" #: js/messages.php:730 msgid "Time taken:" -msgstr "" +msgstr "Timp luat:" #: js/messages.php:731 msgid "" @@ -3100,332 +2653,276 @@ msgid "" msgstr "" #: js/messages.php:733 -#, fuzzy -#| msgid "Copy database to" msgid "Copy tables to" -msgstr "Copiază baza de date" +msgstr "Copiază tabelele în" #: js/messages.php:734 -#, fuzzy -#| msgid "Replace table prefix" msgid "Add table prefix" -msgstr "Înlocuiește prefixul tabelei" +msgstr "Adaugă prefix tabel" #: js/messages.php:735 -#, fuzzy -#| msgid "Replace table prefix" msgid "Replace table with prefix" -msgstr "Înlocuiește prefixul tabelei" +msgstr "Înlocuiește tabelul cu prefix" #: js/messages.php:736 templates/database/structure/check_all_tables.twig:28 -#, fuzzy msgid "Copy table with prefix" msgstr "Copiază tabelul cu prefix" #: js/messages.php:739 msgid "Extremely weak" -msgstr "" +msgstr "Extrem de slabă" #: js/messages.php:740 msgid "Very weak" -msgstr "" +msgstr "Foarte slabă" #: js/messages.php:741 msgid "Weak" -msgstr "" +msgstr "Slabă" #: js/messages.php:742 msgid "Good" -msgstr "" +msgstr "Bună" #: js/messages.php:743 msgid "Strong" -msgstr "" +msgstr "Puternică" #: js/messages.php:746 msgid "Timed out waiting for security key activation." -msgstr "" +msgstr "A expirat așteptarea pentru activarea cheii de securitate." #: js/messages.php:747 #, php-format msgid "Failed security key activation (%s)." -msgstr "" +msgstr "Activarea cheii de securitate a eșuat (%s)." #: js/messages.php:776 -#, fuzzy msgctxt "Previous month" msgid "Prev" msgstr "Anterior" #: js/messages.php:781 -#, fuzzy msgctxt "Next month" msgid "Next" -msgstr "Următoarea" +msgstr "Următor" #. l10n: Display text for current month link in calendar #: js/messages.php:784 -#, fuzzy msgid "Today" -msgstr "Astăzi" +msgstr "Azi" #: js/messages.php:788 -#, fuzzy msgid "January" msgstr "Ianuarie" #: js/messages.php:789 -#, fuzzy msgid "February" msgstr "Februarie" #: js/messages.php:790 -#, fuzzy msgid "March" msgstr "Martie" #: js/messages.php:791 -#, fuzzy msgid "April" msgstr "Aprilie" #: js/messages.php:792 -#, fuzzy msgid "May" msgstr "Mai" #: js/messages.php:793 -#, fuzzy msgid "June" msgstr "Iunie" #: js/messages.php:794 -#, fuzzy msgid "July" msgstr "Iulie" #: js/messages.php:795 -#, fuzzy msgid "August" msgstr "August" #: js/messages.php:796 -#, fuzzy msgid "September" msgstr "Septembrie" #: js/messages.php:797 -#, fuzzy msgid "October" msgstr "Octombrie" #: js/messages.php:798 -#, fuzzy msgid "November" msgstr "Noiembrie" #: js/messages.php:799 -#, fuzzy msgid "December" msgstr "Decembrie" #. l10n: Short month name #: js/messages.php:806 libraries/classes/Util.php:1479 -#, fuzzy msgid "Jan" -msgstr "Ian" +msgstr "ian." #. l10n: Short month name #: js/messages.php:808 libraries/classes/Util.php:1481 -#, fuzzy msgid "Feb" -msgstr "Feb" +msgstr "feb." #. l10n: Short month name #: js/messages.php:810 libraries/classes/Util.php:1483 -#, fuzzy msgid "Mar" -msgstr "Mar" +msgstr "mart." #. l10n: Short month name #: js/messages.php:812 libraries/classes/Util.php:1485 -#, fuzzy msgid "Apr" -msgstr "Apr" +msgstr "apr." #. l10n: Short month name #: js/messages.php:814 libraries/classes/Util.php:1487 -#, fuzzy msgctxt "Short month name" msgid "May" -msgstr "Mai" +msgstr "mai" #. l10n: Short month name #: js/messages.php:816 libraries/classes/Util.php:1489 -#, fuzzy msgid "Jun" -msgstr "Iun" +msgstr "iun." #. l10n: Short month name #: js/messages.php:818 libraries/classes/Util.php:1491 -#, fuzzy msgid "Jul" -msgstr "Iul" +msgstr "iul." #. l10n: Short month name #: js/messages.php:820 libraries/classes/Util.php:1493 -#, fuzzy msgid "Aug" -msgstr "Aug" +msgstr "aug." #. l10n: Short month name #: js/messages.php:822 libraries/classes/Util.php:1495 -#, fuzzy msgid "Sep" -msgstr "Sep" +msgstr "sept." #. l10n: Short month name #: js/messages.php:824 libraries/classes/Util.php:1497 -#, fuzzy msgid "Oct" -msgstr "Oct" +msgstr "oct." #. l10n: Short month name #: js/messages.php:826 libraries/classes/Util.php:1499 -#, fuzzy msgid "Nov" -msgstr "Noi" +msgstr "nov." #. l10n: Short month name #: js/messages.php:828 libraries/classes/Util.php:1501 -#, fuzzy msgid "Dec" -msgstr "Dec" +msgstr "dec." #: js/messages.php:834 -#, fuzzy msgid "Sunday" msgstr "Duminică" #: js/messages.php:835 -#, fuzzy msgid "Monday" msgstr "Luni" #: js/messages.php:836 -#, fuzzy msgid "Tuesday" msgstr "Marți" #: js/messages.php:837 -#, fuzzy msgid "Wednesday" msgstr "Miercuri" #: js/messages.php:838 -#, fuzzy msgid "Thursday" msgstr "Joi" #: js/messages.php:839 -#, fuzzy msgid "Friday" msgstr "Vineri" #: js/messages.php:840 -#, fuzzy msgid "Saturday" msgstr "Sâmbătă" #. l10n: Short week day name #: js/messages.php:847 -#, fuzzy msgid "Sun" -msgstr "Dum" +msgstr "D" #. l10n: Short week day name #: js/messages.php:849 libraries/classes/Util.php:1506 -#, fuzzy msgid "Mon" -msgstr "Lun" +msgstr "L" #. l10n: Short week day name #: js/messages.php:851 libraries/classes/Util.php:1508 -#, fuzzy msgid "Tue" -msgstr "Mar" +msgstr "Ma" #. l10n: Short week day name #: js/messages.php:853 libraries/classes/Util.php:1510 -#, fuzzy msgid "Wed" -msgstr "Mie" +msgstr "Mi" #. l10n: Short week day name #: js/messages.php:855 libraries/classes/Util.php:1512 -#, fuzzy msgid "Thu" -msgstr "Joi" +msgstr "J" #. l10n: Short week day name #: js/messages.php:857 libraries/classes/Util.php:1514 -#, fuzzy msgid "Fri" -msgstr "Vin" +msgstr "V" #. l10n: Short week day name #: js/messages.php:859 libraries/classes/Util.php:1516 -#, fuzzy msgid "Sat" -msgstr "Sâm" +msgstr "S" #. l10n: Minimal week day name #: js/messages.php:866 -#, fuzzy msgid "Su" -msgstr "Du" +msgstr "D" #. l10n: Minimal week day name #: js/messages.php:868 -#, fuzzy msgid "Mo" -msgstr "Lu" +msgstr "L" #. l10n: Minimal week day name #: js/messages.php:870 -#, fuzzy msgid "Tu" -msgstr "Ma" +msgstr "M" #. l10n: Minimal week day name #: js/messages.php:872 -#, fuzzy msgid "We" -msgstr "Mi" +msgstr "M" #. l10n: Minimal week day name #: js/messages.php:874 -#, fuzzy msgid "Th" -msgstr "Jo" +msgstr "J" #. l10n: Minimal week day name #: js/messages.php:876 -#, fuzzy msgid "Fr" -msgstr "Vi" +msgstr "V" #. l10n: Minimal week day name #: js/messages.php:878 -#, fuzzy msgid "Sa" -msgstr "Sâ" +msgstr "S" #. l10n: Column header for week of the year in calendar #: js/messages.php:882 -#, fuzzy msgid "Wk" -msgstr "Săpt" +msgstr "Săpt." #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". @@ -3433,228 +2930,185 @@ msgstr "Săpt" #: js/messages.php:889 #, fuzzy msgid "calendar-month-year" -msgstr "calendar-lună-an" +msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. #: js/messages.php:892 -#, fuzzy msgctxt "Year suffix" msgid "none" -msgstr "Nici unul(a)" +msgstr "Niciunul" #: js/messages.php:904 -#, fuzzy msgid "Hour" msgstr "Oră" #: js/messages.php:905 -#, fuzzy msgid "Minute" msgstr "Minut" #: js/messages.php:906 -#, fuzzy msgid "Second" msgstr "Secundă" #: js/messages.php:917 -#, fuzzy msgid "This field is required" -msgstr "Acest câmp este necesar" +msgstr "Acest câmp este obligatoriu" #: js/messages.php:918 -#, fuzzy -#| msgid "Use text field" msgid "Please fix this field" -msgstr "Utilizare câmp text" +msgstr "Te rog corectează acest câmp" #: js/messages.php:919 -#, fuzzy -#| msgid "Please enter a valid page name" msgid "Please enter a valid email address" -msgstr "Introduceţi un nume valid pentru pagină" +msgstr "Te rog introdu o adresă de email validă" #: js/messages.php:920 -#, fuzzy -#| msgid "Please enter a valid number!" msgid "Please enter a valid URL" -msgstr "Introduceţi un număr valid!" +msgstr "Te rog introdu un URL valid" #: js/messages.php:921 -#, fuzzy -#| msgid "Please enter a valid page name" msgid "Please enter a valid date" -msgstr "Introduceţi un nume valid pentru pagină" +msgstr "Te rog introdu o dată validă" #: js/messages.php:924 -#, fuzzy -#| msgid "Please enter a valid page name" msgid "Please enter a valid date ( ISO )" -msgstr "Introduceţi un nume valid pentru pagină" +msgstr "Te rog introdu o dată validă (ISO)" #: js/messages.php:926 -#, fuzzy -#| msgid "Please enter a valid number!" msgid "Please enter a valid number" -msgstr "Introduceţi un număr valid!" +msgstr "Te rog introdu un număr valid" #: js/messages.php:929 -#, fuzzy -#| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" -msgstr "Introduceţi un număr valid!" +msgstr "Te rog introdu un număr de card de credit valid" #: js/messages.php:931 -#, fuzzy -#| msgid "Please enter a valid length!" msgid "Please enter only digits" -msgstr "Vă rugăm să introduceţi o lungime validă!" +msgstr "Te rog introdu numai cifre" #: js/messages.php:934 -#, fuzzy -#| msgid "Please enter a valid page name" msgid "Please enter the same value again" -msgstr "Introduceţi un nume valid pentru pagină" +msgstr "Te rog introdu din nou aceeași valoare" #: js/messages.php:938 -#, fuzzy msgid "Please enter no more than {0} characters" -msgstr "Vă rugăm să nu introduceţi mai mult de {0} caractere" +msgstr "Te rog introdu nu mai mult de {0} caractere" #: js/messages.php:943 -#, fuzzy -#| msgid "Please enter a valid page name" msgid "Please enter at least {0} characters" -msgstr "Introduceţi un nume valid pentru pagină" +msgstr "Te rog introdu cel puțin {0} caractere" #: js/messages.php:948 -#, fuzzy msgid "Please enter a value between {0} and {1} characters long" -msgstr "Vă rugăm sa introduceţi o valoare între {0} şi {1} caractere de lungă" +msgstr "Te rog introdu o valoare între {0} și {1} caractere ca lungime" #: js/messages.php:953 -#, fuzzy -#| msgid "Please enter a valid page name" msgid "Please enter a value between {0} and {1}" -msgstr "Introduceţi un nume valid pentru pagină" +msgstr "Te rog introdu o valoare între {0} și {1}" #: js/messages.php:958 -#, fuzzy -#| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" -msgstr "Vă rugăm să introduceţi o lungime validă!" +msgstr "Te rog introdu o valoare mai mică sau egală cu {0}" #: js/messages.php:963 -#, fuzzy -#| msgid "Please enter a valid page name" msgid "Please enter a value greater than or equal to {0}" -msgstr "Introduceţi un nume valid pentru pagină" +msgstr "Te rog introdu o valoare mai mare sau egală cu {0}" #: js/messages.php:969 -#, fuzzy -#| msgid "Please enter a valid page name" msgid "Please enter a valid date or time" -msgstr "Introduceţi un nume valid pentru pagină" +msgstr "Te rog introdu o dată sau o oră validă" #: js/messages.php:974 -#, fuzzy -#| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" -msgstr "Introduceţi un număr valid!" +msgstr "Te rog introdu o intrare HEX validă" #: js/messages.php:979 libraries/classes/Core.php:296 #: libraries/classes/Import.php:112 libraries/classes/InsertEdit.php:1490 #: libraries/classes/Message.php:191 libraries/classes/Util.php:542 #: view_operations.php:70 -#, fuzzy msgid "Error" msgstr "Eroare" #: libraries/classes/Advisor.php:249 -#, fuzzy, php-format -#| msgid "Error while creating PDF:" +#, php-format msgid "Error when evaluating: %s" -msgstr "Eroare la creare PDF:" +msgstr "Eroare la evaluare: %s" #: libraries/classes/Advisor.php:280 -#, fuzzy, php-format +#, php-format msgid "Failed evaluating precondition for rule '%s'." -msgstr "Imposibil de evaluat precondiţia pentru regula '%s'." +msgstr "Evaluarea precondiției pentru regula „%s” a eșuat." #: libraries/classes/Advisor.php:297 -#, fuzzy, php-format +#, php-format msgid "Failed calculating value for rule '%s'." -msgstr "Imposibil de calculat valoarea pentru regula '%s'." +msgstr "Calcularea valorii pentru regula „%s” a eșuat." #: libraries/classes/Advisor.php:316 -#, fuzzy, php-format +#, php-format msgid "Failed running test for rule '%s'." -msgstr "Imposibil de rulat testul pentru regula'%s'." +msgstr "Rularea testului pentru regula „%s” a eșuat." #: libraries/classes/Advisor.php:396 -#, fuzzy, php-format +#, php-format msgid "Failed formatting string for rule '%s'." -msgstr "Imposibil de formatat șirul pentru regula '%s'." +msgstr "Formatarea șirului pentru regula „%s” a eșuat." #: libraries/classes/Advisor.php:496 #, php-format msgid "Error in reading file: The file '%s' does not exist or is not readable!" msgstr "" +"Eroare la citirea fișierului: fișierul „%s” nu există sau nu poate fi citit!" #: libraries/classes/Advisor.php:521 -#, fuzzy, php-format +#, php-format msgid "" "Invalid rule declaration on line %1$s, expected line %2$s of previous rule." msgstr "" -"Declarație invalidă a unei reguli la linia %1$s, linia aşteptată %2$s a " -"regulii anterioare." +"Declarație invalidă a regulii pe linia %1$s, linia așteptată %2$s a regulii " +"anterioare." #: libraries/classes/Advisor.php:540 -#, fuzzy, php-format +#, php-format msgid "Invalid rule declaration on line %s." -msgstr "Declaraţia regulei este invalidă pe linia %s." +msgstr "Declarație invalidă a regulii pe linia %s." #: libraries/classes/Advisor.php:548 -#, fuzzy, php-format +#, php-format msgid "Unexpected characters on line %s." -msgstr "Caractere neaşteptate pe linia %s." +msgstr "Caractere neașteptate pe linia %s." #: libraries/classes/Advisor.php:563 -#, fuzzy, php-format +#, php-format msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." -msgstr "Caracter neașteptat pe linia %1$s. Aşteptam tab, dar am găsit \"%2$s\"." +msgstr "" +"Caracter neașteptat pe linia %1$s. Era așteptată o filă, dar am găsit „%2$s”." #: libraries/classes/Advisor.php:598 -#, fuzzy msgid "per second" msgstr "pe secundă" #: libraries/classes/Advisor.php:601 -#, fuzzy msgid "per minute" msgstr "pe minut" #: libraries/classes/Advisor.php:604 libraries/classes/Server/Status.php:160 #: libraries/classes/Server/Status.php:245 #: libraries/classes/Server/Status/Queries.php:103 -#, fuzzy msgid "per hour" msgstr "pe oră" #: libraries/classes/Advisor.php:607 -#, fuzzy msgid "per day" msgstr "pe zi" #: libraries/classes/BrowseForeigners.php:193 -#, fuzzy msgid "Search:" -msgstr "Căutare:" +msgstr "Caută:" #: libraries/classes/BrowseForeigners.php:216 #: libraries/classes/BrowseForeigners.php:220 libraries/classes/Index.php:719 #: templates/table/tracking/structure_snapshot_indexes.twig:5 -#, fuzzy msgid "Keyname" msgstr "Nume cheie" @@ -3664,7 +3118,6 @@ msgstr "Nume cheie" #: templates/server/plugins/section.twig:10 #: templates/server/collations/charsets.twig:6 #: templates/server/engines/engines.twig:5 -#, fuzzy msgid "Description" msgstr "Descriere" @@ -3673,58 +3126,55 @@ msgstr "Descriere" #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:495 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:520 #: libraries/classes/Util.php:2292 -#, fuzzy msgid "Page number:" -msgstr "Numărul paginii:" +msgstr "Număr pagină:" #: libraries/classes/CentralColumns.php:220 msgid "" "The configuration storage is not ready for the central list of columns " "feature." msgstr "" +"Spațiul de stocare pentru configurare nu este pregătit pentru lista centrală " +"a funcționalității coloane." #: libraries/classes/CentralColumns.php:355 -#, fuzzy, php-format +#, php-format msgid "Could not add %1$s as they already exist in central list!" -msgstr "Nu s-a putut adăuga %1$s, sunt deja existente în lista centrală!" +msgstr "Nu am putut adăuga %1$s, deoarece există deja în lista centrală!" #: libraries/classes/CentralColumns.php:370 -#, fuzzy msgid "Could not add columns!" -msgstr "Nu s-au putut adăuga coloanele!" +msgstr "Nu am putut adăuga coloanele!" #: libraries/classes/CentralColumns.php:447 #, php-format msgid "" "Couldn't remove Column(s) %1$s as they don't exist in central columns list!" msgstr "" +"Nu am putut înlătura coloana (coloanele) %1$s, deoarece nu există în lista " +"centrală!" #: libraries/classes/CentralColumns.php:459 -#, fuzzy msgid "Could not remove columns!" -msgstr "Nu s-au putut elimina coloanele!" +msgstr "Nu am putut înlătura coloanele!" #: libraries/classes/CentralColumns.php:618 -#, fuzzy msgid "YES" msgstr "DA" #: libraries/classes/CentralColumns.php:618 -#, fuzzy msgid "NO" msgstr "NU" #: libraries/classes/CentralColumns.php:749 #: libraries/classes/Display/Results.php:961 -#, fuzzy msgid "Filter rows" -msgstr "Filtrare înregistrări" +msgstr "Filtrează rândurile" #: libraries/classes/CentralColumns.php:751 #: libraries/classes/Display/Results.php:963 -#, fuzzy msgid "Search this table" -msgstr "Caută în tabelă" +msgstr "Caută acest tabel" #: libraries/classes/CentralColumns.php:774 libraries/classes/Index.php:717 #: libraries/classes/Rte/RteList.php:89 libraries/classes/Rte/RteList.php:104 @@ -3742,7 +3192,6 @@ msgstr "Caută în tabelă" #: templates/table/structure/display_partitions.twig:33 #: templates/database/tracking/untracked_tables.twig:10 #: templates/server/databases/table_header.twig:37 -#, fuzzy msgid "Action" msgstr "Acțiune" @@ -3759,7 +3208,6 @@ msgstr "Acțiune" #: templates/table/structure/table_structure_header.twig:5 #: templates/columns_definitions/table_fields_definitions.twig:9 #: templates/database/create_table.twig:11 -#, fuzzy msgid "Name" msgstr "Nume" @@ -3767,9 +3215,8 @@ msgstr "Nume" #: libraries/classes/CentralColumns.php:1479 #: libraries/classes/Rte/Routines.php:945 #: templates/columns_definitions/table_fields_definitions.twig:16 -#, fuzzy msgid "Length/Values" -msgstr "Lungime/Setare" +msgstr "Lungime/valori" #: libraries/classes/CentralColumns.php:790 #: libraries/classes/CentralColumns.php:1480 libraries/classes/Charsets.php:273 @@ -3784,464 +3231,354 @@ msgstr "Lungime/Setare" #: templates/table/tracking/structure_snapshot_indexes.twig:11 #: templates/table/tracking/structure_snapshot_columns.twig:8 #: templates/columns_definitions/table_fields_definitions.twig:24 -#, fuzzy msgid "Collation" -msgstr "Interclasare" +msgstr "Colaționare" #: libraries/classes/CentralColumns.php:793 -#, fuzzy -#| msgid "Attributes" msgid "Attribute" -msgstr "Proprietăți" +msgstr "Atribut" #: libraries/classes/CentralColumns.php:797 #: libraries/classes/CentralColumns.php:1480 -#, fuzzy msgid "A_I" -msgstr "I_A" +msgstr "A_I" #: libraries/classes/CentralColumns.php:833 -#, fuzzy msgid "Select a table" -msgstr "Selectaţi un tabel" +msgstr "Selectează un tabel" #: libraries/classes/CentralColumns.php:890 #: templates/table/structure/add_column.twig:4 -#, fuzzy msgid "Add column" msgstr "Adaugă coloană" #: libraries/classes/CentralColumns.php:902 -#, fuzzy msgid "Select a column." -msgstr "Selectaţi o coloană." +msgstr "Selectează o coloană." #: libraries/classes/CentralColumns.php:1355 -#, fuzzy msgid "Add new column" -msgstr "Adăugați o coloană nouă" +msgstr "Adaugă coloană nouă" #: libraries/classes/CentralColumns.php:1480 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:631 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:654 #: templates/table/structure/table_structure_header.twig:8 #: templates/columns_definitions/table_fields_definitions.twig:27 -#, fuzzy msgid "Attributes" -msgstr "Proprietăți" +msgstr "Atribute" #: libraries/classes/Charsets.php:219 #: templates/database/structure/table_header.twig:44 -#, fuzzy msgid "Charset" msgstr "Set de caractere" #: libraries/classes/Charsets.php:310 -#, fuzzy -#| msgid "unknown" msgid "Unknown" -msgstr "necunoscut" +msgstr "Necunoscut" #: libraries/classes/Charsets.php:324 -#, fuzzy -#| msgid "Binary" msgctxt "Collation" msgid "Binary" msgstr "Binar" #: libraries/classes/Charsets.php:336 libraries/classes/Charsets.php:566 -#, fuzzy -#| msgid "Unicode" msgctxt "Collation" msgid "Unicode" msgstr "Unicod" #: libraries/classes/Charsets.php:346 libraries/classes/Charsets.php:517 -#, fuzzy -#| msgid "West European" msgctxt "Collation" msgid "West European" -msgstr "European de vest" +msgstr "Vest European" #: libraries/classes/Charsets.php:353 -#, fuzzy -#| msgid "Central European" msgctxt "Collation" msgid "Central European" -msgstr "European de est" +msgstr "Central European" #: libraries/classes/Charsets.php:358 -#, fuzzy -#| msgid "Russian" msgctxt "Collation" msgid "Russian" -msgstr "Rus" +msgstr "Rusă" #: libraries/classes/Charsets.php:363 -#, fuzzy -#| msgid "Simplified Chinese" msgctxt "Collation" msgid "Simplified Chinese" msgstr "Chineză simplificată" #: libraries/classes/Charsets.php:370 libraries/classes/Charsets.php:488 -#, fuzzy -#| msgid "Japanese" msgctxt "Collation" msgid "Japanese" -msgstr "Japonez" +msgstr "Japoneză" #: libraries/classes/Charsets.php:375 -#, fuzzy -#| msgid "Baltic" msgctxt "Collation" msgid "Baltic" -msgstr "Baltic" +msgstr "Baltică" #: libraries/classes/Charsets.php:380 -#, fuzzy -#| msgid "Armenian" msgctxt "Collation" msgid "Armenian" -msgstr "Armean" +msgstr "Armeană" #: libraries/classes/Charsets.php:383 -#, fuzzy -#| msgid "Traditional Chinese" msgctxt "Collation" msgid "Traditional Chinese" -msgstr "Chineza Traditionala" +msgstr "Chineză tradițională" #: libraries/classes/Charsets.php:386 -#, fuzzy -#| msgid "Cyrillic" msgctxt "Collation" msgid "Cyrillic" -msgstr "Chirilic" +msgstr "Chirilică" #: libraries/classes/Charsets.php:389 -#, fuzzy -#| msgid "Arabic" msgctxt "Collation" msgid "Arabic" -msgstr "Arab" +msgstr "Arabă" #: libraries/classes/Charsets.php:392 libraries/classes/Charsets.php:503 -#, fuzzy -#| msgid "Korean" msgctxt "Collation" msgid "Korean" -msgstr "Coreean" +msgstr "Coreeană" #: libraries/classes/Charsets.php:395 -#, fuzzy -#| msgid "Hebrew" msgctxt "Collation" msgid "Hebrew" msgstr "Ebraică" #: libraries/classes/Charsets.php:398 -#, fuzzy -#| msgid "Georgian" msgctxt "Collation" msgid "Georgian" msgstr "Georgiană" #: libraries/classes/Charsets.php:401 -#, fuzzy -#| msgid "Greek" msgctxt "Collation" msgid "Greek" -msgstr "Grec" +msgstr "Greacă" #: libraries/classes/Charsets.php:404 -#, fuzzy -#| msgid "Czech-Slovak" msgctxt "Collation" msgid "Czech-Slovak" -msgstr "Cehoslovac" +msgstr "Cehoslovacă" #: libraries/classes/Charsets.php:407 libraries/classes/Charsets.php:558 -#, fuzzy -#| msgid "Ukrainian" msgctxt "Collation" msgid "Ukrainian" -msgstr "Ucrainean" +msgstr "Ucraineană" #: libraries/classes/Charsets.php:410 libraries/classes/Charsets.php:554 -#, fuzzy -#| msgid "Turkish" msgctxt "Collation" msgid "Turkish" -msgstr "Turc" +msgstr "Turcă" #: libraries/classes/Charsets.php:413 libraries/classes/Charsets.php:546 -#, fuzzy -#| msgid "Swedish" msgctxt "Collation" msgid "Swedish" -msgstr "Suedez" +msgstr "Suedeză" #: libraries/classes/Charsets.php:416 libraries/classes/Charsets.php:550 -#, fuzzy -#| msgid "Thai" msgctxt "Collation" msgid "Thai" -msgstr "Tailandez" +msgstr "Thailandeză" #: libraries/classes/Charsets.php:419 -#, fuzzy -#| msgid "unknown" msgctxt "Collation" msgid "Unknown" -msgstr "necunoscut" +msgstr "Necunoscută" #: libraries/classes/Charsets.php:435 -#, fuzzy -#| msgid "Bulgarian" msgctxt "Collation" msgid "Bulgarian" -msgstr "Bulgar" +msgstr "Bulgară" #: libraries/classes/Charsets.php:440 msgctxt "Collation" msgid "Chinese" -msgstr "" +msgstr "Chineză" #: libraries/classes/Charsets.php:445 -#, fuzzy -#| msgid "Croatian" msgctxt "Collation" msgid "Croatian" -msgstr "Croat" +msgstr "Croată" #: libraries/classes/Charsets.php:449 -#, fuzzy -#| msgid "Czech" msgctxt "Collation" msgid "Czech" -msgstr "Ceh" +msgstr "Cehă" #: libraries/classes/Charsets.php:453 -#, fuzzy -#| msgid "Danish" msgctxt "Collation" msgid "Danish" -msgstr "Danez" +msgstr "Daneză" #: libraries/classes/Charsets.php:457 -#, fuzzy -#| msgid "English" msgctxt "Collation" msgid "English" -msgstr "Englez" +msgstr "Engleză" #: libraries/classes/Charsets.php:461 -#, fuzzy -#| msgid "Esperanto" msgctxt "Collation" msgid "Esperanto" msgstr "Esperanto" #: libraries/classes/Charsets.php:465 -#, fuzzy -#| msgid "Estonian" msgctxt "Collation" msgid "Estonian" msgstr "Estoniană" #: libraries/classes/Charsets.php:468 libraries/classes/Charsets.php:585 -#, fuzzy -#| msgid "Data Dictionary" msgctxt "Collation" msgid "German (dictionary order)" -msgstr "Dicționar de date" +msgstr "Germană (literară)" #: libraries/classes/Charsets.php:471 libraries/classes/Charsets.php:582 msgctxt "Collation" msgid "German (phone book order)" -msgstr "" +msgstr "Germană (uzuală)" #: libraries/classes/Charsets.php:480 -#, fuzzy -#| msgid "Hungarian" msgctxt "Collation" msgid "Hungarian" -msgstr "Maghiar" +msgstr "Maghiară" #: libraries/classes/Charsets.php:484 -#, fuzzy -#| msgid "Icelandic" msgctxt "Collation" msgid "Icelandic" -msgstr "Islandez" +msgstr "Islandeză" #: libraries/classes/Charsets.php:491 msgctxt "Collation" msgid "Classical Latin" -msgstr "" +msgstr "Latină clasică" #: libraries/classes/Charsets.php:495 -#, fuzzy -#| msgid "Latvian" msgctxt "Collation" msgid "Latvian" -msgstr "Leton" +msgstr "Letonă" #: libraries/classes/Charsets.php:499 -#, fuzzy -#| msgid "Lithuanian" msgctxt "Collation" msgid "Lithuanian" -msgstr "Lituanian" +msgstr "Lituaniană" #: libraries/classes/Charsets.php:507 msgctxt "Collation" msgid "Burmese" -msgstr "" +msgstr "Birmaneză" #: libraries/classes/Charsets.php:510 -#, fuzzy -#| msgid "Persian" msgctxt "Collation" msgid "Persian" msgstr "Persană" #: libraries/classes/Charsets.php:514 -#, fuzzy -#| msgid "Polish" msgctxt "Collation" msgid "Polish" -msgstr "Polononez" +msgstr "Poloneză" #: libraries/classes/Charsets.php:521 -#, fuzzy -#| msgid "Romanian" msgctxt "Collation" msgid "Romanian" -msgstr "Român" +msgstr "Română" #: libraries/classes/Charsets.php:525 msgctxt "Collation" msgid "Sinhalese" -msgstr "" +msgstr "Singaleză" #: libraries/classes/Charsets.php:529 -#, fuzzy -#| msgid "Slovak" msgctxt "Collation" msgid "Slovak" msgstr "Slovacă" #: libraries/classes/Charsets.php:533 -#, fuzzy -#| msgid "Slovenian" msgctxt "Collation" msgid "Slovenian" msgstr "Slovenă" #: libraries/classes/Charsets.php:536 libraries/classes/Charsets.php:596 -#, fuzzy -#| msgid "Spanish" msgctxt "Collation" msgid "Spanish (modern)" -msgstr "Spaniolă" +msgstr "Spaniolă (modernă)" #: libraries/classes/Charsets.php:543 libraries/classes/Charsets.php:593 msgctxt "Collation" msgid "Spanish (traditional)" -msgstr "" +msgstr "Spaniolă (tradițională)" #: libraries/classes/Charsets.php:562 -#, fuzzy -#| msgid "File name" msgctxt "Collation" msgid "Vietnamese" -msgstr "Denumire fișier" +msgstr "Vietnameză" #: libraries/classes/Charsets.php:629 -#, fuzzy -#| msgid "case-insensitive" msgctxt "Collation variant" msgid "case-insensitive" -msgstr "insensibil la registru" +msgstr "insensibil la majuscule" #: libraries/classes/Charsets.php:632 -#, fuzzy -#| msgid "case-sensitive" msgctxt "Collation variant" msgid "case-sensitive" -msgstr "sensibil la registru" +msgstr "sensibil la majuscule" #: libraries/classes/Charsets.php:635 -#, fuzzy -#| msgid "case-insensitive" msgctxt "Collation variant" msgid "accent-insensitive" -msgstr "insensibil la registru" +msgstr "insensibil la accent" #: libraries/classes/Charsets.php:638 -#, fuzzy -#| msgid "case-sensitive" msgctxt "Collation variant" msgid "accent-sensitive" -msgstr "sensibil la registru" +msgstr "sensibil la accent" #: libraries/classes/Charsets.php:642 -#, fuzzy -#| msgid "multilingual" msgctxt "Collation variant" msgid "multi-level" -msgstr "Poliglot" +msgstr "mai multe niveluri" #: libraries/classes/Charsets.php:645 -#, fuzzy -#| msgid "Binary" msgctxt "Collation variant" msgid "binary" -msgstr "Binar" +msgstr "binar" #: libraries/classes/Config.php:1073 -#, fuzzy, php-format +#, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Fișierul de configurare existent (%s) nu poate fi citit." #: libraries/classes/Config.php:1103 -#, fuzzy msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -"Permisiuni greșite asupra fișierului de configurare, acesta nu ar trebui să " -"aibă permisiuni de scriere pentru oricine!" +"Permisiuni greșite la fișierul de configurare, nu ar trebui să poată fi " +"scris de oricine!" #: libraries/classes/Config.php:1123 -#, fuzzy, php-format +#, php-format msgid "Could not load default configuration from: %1$s" -msgstr "Nu s-a putut încărca configurația implicită de la: %1$s" +msgstr "Nu am putut încărca configurarea implicită de la: %1$s" #: libraries/classes/Config.php:1130 -#, fuzzy msgid "Failed to read configuration file!" -msgstr "Fișierul de configurare nu poate fi citit!" +msgstr "Citirea fișierului de configurare a eșuat!" #: libraries/classes/Config.php:1133 -#, fuzzy msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -"Asta înseamnă, deobicei, ca există o eroare de sintaxă in el, vă rugăm să " -"verificaţi erorile de mai jos." +"De obicei, asta înseamnă că are o eroare de sintaxă, te rog verifică toate " +"erorile de mai jos." #: libraries/classes/Config.php:1449 #: libraries/classes/Config/Descriptions.php:1486 -#, fuzzy msgid "Font size" msgstr "Dimensiune font" #: libraries/classes/Config.php:1770 -#, fuzzy, php-format +#, php-format msgid "Invalid server index: %s" -msgstr "Index de server invalid: %s" +msgstr "Index server invalid: %s" #: libraries/classes/Config.php:1783 #, fuzzy, php-format @@ -4249,19 +3586,15 @@ msgid "Server %d" msgstr "Server %d" #: libraries/classes/Config/Descriptions.php:62 -#, fuzzy -#| msgid "" -#| "If enabled user can enter any MySQL server in login form for cookie auth" msgid "" "If enabled, user can enter any MySQL server in login form for cookie auth." msgstr "" -"Dacă este activat, utilizatorul poate introduce orice server MySQL în " -"formularul de login pentru autentificarea cu cookie." +"Dacă este activată, utilizatorul poate introduce orice server MySQL în " +"formularul de autentificare pentru autentificarea cu cookie-uri." #: libraries/classes/Config/Descriptions.php:64 -#, fuzzy msgid "Allow login to any MySQL server" -msgstr "Permite conectare la orice server MySQL" +msgstr "Permite autentificarea la orice server MySQL" #: libraries/classes/Config/Descriptions.php:67 msgid "" @@ -4271,10 +3604,8 @@ msgid "" msgstr "" #: libraries/classes/Config/Descriptions.php:72 -#, fuzzy -#| msgid "Cannot log in to the MySQL server" msgid "Restrict login to MySQL server" -msgstr "Nu pot face conexiunea catre serverul MySQL" +msgstr "Restricționează autentificarea la serverul MySQL" #: libraries/classes/Config/Descriptions.php:75 msgid "" @@ -4284,19 +3615,20 @@ msgid "" msgstr "" #: libraries/classes/Config/Descriptions.php:80 -#, fuzzy msgid "Allow third party framing" -msgstr "Permite încadrarea unei părţi terţe" +msgstr "Permite încadrarea terților" #: libraries/classes/Config/Descriptions.php:82 msgid "Show \"Drop database\" link to normal users" -msgstr "" +msgstr "Arată legătura „Elimină baza de date” utilizatorilor obișnuiți" #: libraries/classes/Config/Descriptions.php:85 msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication." msgstr "" +"Frază de acces secretă folosită pentru criptarea cookie-urilor în " +"autentificarea cu [kbd]cookie-uri[/kbd]." #: libraries/classes/Config/Descriptions.php:89 #, fuzzy @@ -4304,53 +3636,40 @@ msgid "Blowfish secret" msgstr "Secret blowfish" #: libraries/classes/Config/Descriptions.php:91 -#, fuzzy msgid "Highlight selected rows." msgstr "Evidențiază rândurile selectate." #: libraries/classes/Config/Descriptions.php:93 -#, fuzzy msgid "Row marker" -msgstr "Evidenţiator de înregistrări" +msgstr "Marcator de rând" #: libraries/classes/Config/Descriptions.php:95 -#, fuzzy msgid "Highlight row pointed by the mouse cursor." -msgstr "Evidențiază rândul indicat de cursorul mouse-ului." +msgstr "Evidențiază rândul indicat de cursorul mausului." #: libraries/classes/Config/Descriptions.php:97 -#, fuzzy msgid "Highlight pointer" -msgstr "Evidențiază indicator" +msgstr "Evidențiază indicatorul" #: libraries/classes/Config/Descriptions.php:100 -#, fuzzy -#| msgid "" -#| "Enable [a@https://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " -#| "import operations." msgid "Enable bzip2 compression for import operations." -msgstr "" -"Permite compresia [a@https://en.wikipedia.org/wiki/Bzip2]bzip2[/a] pentru " -"operațiile de import." +msgstr "Activează compresia bzip2 pentru operațiile de import." #: libraries/classes/Config/Descriptions.php:104 -#, fuzzy msgid "Bzip2" msgstr "Bzip2" #: libraries/classes/Config/Descriptions.php:107 -#, fuzzy msgid "" "Defines which type of editing controls should be used for CHAR and VARCHAR " "columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/" "kbd] - allows newlines in columns." msgstr "" -"Definește ce tip de controale de editare ar trebui să fie utilizate pentru " +"Definește ce tip de comenzi de editare ar trebui să fie folosite pentru " "coloanele CHAR și VARCHAR; [kbd]input[/kbd] - permite limitarea lungimii " -"input-ului, [kbd]textarea[/kbd] - permite separatori de rând în coloane." +"intrării, [kbd]textarea[/kbd] - permite linii noi în coloane." #: libraries/classes/Config/Descriptions.php:112 -#, fuzzy msgid "CHAR columns editing" msgstr "Editare coloane CHAR" @@ -4359,9 +3678,10 @@ msgid "" "Use user-friendly editor for editing SQL queries (CodeMirror) with syntax " "highlighting and line numbers." msgstr "" +"Folosește un editor prietenos pentru editarea interogărilor SQL (CodeMirror) " +"cu evidențierea sintaxei și a numerele de linie." #: libraries/classes/Config/Descriptions.php:120 -#, fuzzy msgid "Enable CodeMirror" msgstr "Activează CodeMirror" @@ -4370,15 +3690,14 @@ msgid "" "Find any errors in the query before executing it. Requires CodeMirror to be " "enabled." msgstr "" +"Găsește toate erorile în interogare înainte de a o executa. CodeMirror " +"trebuie să fie activat." #: libraries/classes/Config/Descriptions.php:127 -#, fuzzy -#| msgid "Enable SQL Validator" msgid "Enable linter" -msgstr "Activati Validatorul SQL" +msgstr "Activează linter-ul" #: libraries/classes/Config/Descriptions.php:130 -#, fuzzy msgid "" "Defines the minimum size for input fields generated for CHAR and VARCHAR " "columns." @@ -4387,12 +3706,10 @@ msgstr "" "coloanele CHAR și VARCHAR." #: libraries/classes/Config/Descriptions.php:134 -#, fuzzy msgid "Minimum size for input field" -msgstr "Dimensiunea minimă a câmpului de intrare" +msgstr "Dimensiune minimă pentru câmpul de intrare" #: libraries/classes/Config/Descriptions.php:137 -#, fuzzy msgid "" "Defines the maximum size for input fields generated for CHAR and VARCHAR " "columns." @@ -4401,149 +3718,120 @@ msgstr "" "coloanele CHAR și VARCHAR." #: libraries/classes/Config/Descriptions.php:141 -#, fuzzy msgid "Maximum size for input field" -msgstr "Dimensiunea maximă a câmpului de intrare" +msgstr "Dimensiune maximă pentru câmpul de intrare" #: libraries/classes/Config/Descriptions.php:143 -#, fuzzy msgid "Number of columns for CHAR/VARCHAR textareas." -msgstr "Numărul de coloane pentru câmpurile de text CHAR/VARCHAR." +msgstr "Număr de coloane pentru zonele text CHAR/VARCHAR." #: libraries/classes/Config/Descriptions.php:145 -#, fuzzy msgid "CHAR textarea columns" -msgstr "coloane textarea CHAR" +msgstr "Coloane zonă text CHAR" #: libraries/classes/Config/Descriptions.php:147 -#, fuzzy msgid "Number of rows for CHAR/VARCHAR textareas." -msgstr "Numărul de rânduri pentru câmpurile de text CHAR/VARCHAR." +msgstr "Număr de rânduri pentru zonele text CHAR/VARCHAR." #: libraries/classes/Config/Descriptions.php:149 -#, fuzzy msgid "CHAR textarea rows" -msgstr "rânduri textarea CHAR" +msgstr "Rânduri zonă text CHAR" #: libraries/classes/Config/Descriptions.php:151 -#, fuzzy msgid "Check config file permissions" -msgstr "Verifică permisiunile fișierului de configurare" +msgstr "Verifică permisiuni fișier de configurare" #: libraries/classes/Config/Descriptions.php:154 -#, fuzzy msgid "" "Compress gzip exports on the fly without the need for much memory; if you " "encounter problems with created gzip files disable this feature." msgstr "" -"Comprimați exportările gzip pe loc fără nevoia folosirii de mai multă " -"memorie; dezactivați această opțiune dacă întâmpinați probleme cu fișierele " -"gzip create." +"Comprimă exporturile gzip pe loc fără a avea nevoie de multă memorie; dacă " +"întâmpini probleme cu fișierele gzip create, dezactivează această " +"funcționalitate." #: libraries/classes/Config/Descriptions.php:158 -#, fuzzy msgid "Compress on the fly" -msgstr "Comprimați pe loc" +msgstr "Comprimă pe loc" #: libraries/classes/Config/Descriptions.php:161 -#, fuzzy -#| msgid "" -#| "Whether a warning (\"Are your really sure…\") should be displayed when " -#| "you're about to lose data" msgid "" "Whether a warning (\"Are your really sure…\") should be displayed when " "you're about to lose data." msgstr "" -"Dacă un avertisment (\" Sunteți sigur…\") ar trebui afișat când sunteți pe " -"cale sa pierdeți datele" +"Dacă ar trebui afișată o avertizare („Sigur vrei să…”) când ești pe cale să " +"pierzi date." #: libraries/classes/Config/Descriptions.php:165 -#, fuzzy msgid "Confirm DROP queries" -msgstr "Confirmați interogările DROP" +msgstr "Confirmă interogările DROP" #: libraries/classes/Config/Descriptions.php:167 msgid "" "Log SQL queries and their execution time, to be displayed in the console" msgstr "" +"Interogări SQL din jurnal și timpul lor de execuție, pentru a fi afișate în " +"consolă" #: libraries/classes/Config/Descriptions.php:169 #: templates/console/display.twig:11 templates/console/display.twig:64 -#, fuzzy msgid "Debug SQL" msgstr "Depanare SQL" #: libraries/classes/Config/Descriptions.php:171 -#, fuzzy -#| msgid "Tab that is displayed when entering a database" msgid "Tab that is displayed when entering a database." -msgstr "Tab-ul care este afișat când se intră într-o bază de date" +msgstr "Fila care este afișată când introduci o bază de date." #: libraries/classes/Config/Descriptions.php:173 -#, fuzzy msgid "Default database tab" -msgstr "Pagina implicită a bazei de date" +msgstr "Fila implicită a bazei de date" #: libraries/classes/Config/Descriptions.php:175 -#, fuzzy -#| msgid "Tab that is displayed when entering a server" msgid "Tab that is displayed when entering a server." -msgstr "Tab-ul care este afișat când se intră intr-un server" +msgstr "Fila care este afișată când introduci un server." #: libraries/classes/Config/Descriptions.php:177 -#, fuzzy msgid "Default server tab" -msgstr "Tab-ul implicit al server-ului" +msgstr "Filă implicită server" #: libraries/classes/Config/Descriptions.php:179 -#, fuzzy msgid "Tab that is displayed when entering a table." -msgstr "Tab-ul care este afișat când se intră intr-un tabel" +msgstr "Fila care este afișată când introduci un tabel." #: libraries/classes/Config/Descriptions.php:181 -#, fuzzy msgid "Default table tab" -msgstr "Pagina implicită a tabelului" +msgstr "Filă implicită tabel" #: libraries/classes/Config/Descriptions.php:183 -#, fuzzy -#| msgid "Enclose table and column names with backquotes" msgid "Autocomplete of the table and column names in the SQL queries." -msgstr "Utilizați apostroful pentru numele tabelelor și a coloanelor" +msgstr "" +"Completarea automată a numelor tabelelor și coloanelor din interogările SQL." #: libraries/classes/Config/Descriptions.php:185 -#, fuzzy -#| msgid "Enclose table and column names with backquotes" msgid "Enable autocomplete for table and column names" -msgstr "Utilizați apostroful pentru numele tabelelor și a coloanelor" +msgstr "Activează completarea automată pentru numele tabelelor și a coloanelor" #: libraries/classes/Config/Descriptions.php:187 -#, fuzzy -#| msgid "Propose table structure" msgid "Whether the table structure actions should be hidden." -msgstr "Propune structura de tabele" +msgstr "Dacă acțiunile structurii tabelului ar trebui să fie ascunse." #: libraries/classes/Config/Descriptions.php:189 -#, fuzzy -#| msgid "Table comments" msgid "Show column comments" -msgstr "Comentarii tabel" +msgstr "Arată comentarii în coloană" #: libraries/classes/Config/Descriptions.php:191 msgid "Whether column comments should be shown in table structure view" msgstr "" +"Dacă comentariile din coloană ar trebui arătate în vizualizarea structurii " +"tabelului" #: libraries/classes/Config/Descriptions.php:193 -#, fuzzy -#| msgid "Propose table structure" msgid "Hide table structure actions" -msgstr "Propune structura de tabele" +msgstr "Ascunde acțiunile structurii tabelului" #: libraries/classes/Config/Descriptions.php:195 -#, fuzzy -#| msgid "Default sorting order" msgid "Default transformations for Hex" -msgstr "Ordine de sortare implicită" +msgstr "Transformări implicite pentru Hex" #: libraries/classes/Config/Descriptions.php:197 #: libraries/classes/Config/Descriptions.php:201 @@ -4558,108 +3846,86 @@ msgid "" "Values for options list for default transformations. These will be " "overwritten if transformation is filled in at table structure page." msgstr "" +"Valori pentru lista de opțiuni pentru transformările implicite. Acestea vor " +"fi contramandate dacă transformarea este completă în pagina structurii " +"tabelului." #: libraries/classes/Config/Descriptions.php:199 -#, fuzzy -#| msgid "Transformation options" msgid "Default transformations for Substring" -msgstr "Opțiuni de transformare" +msgstr "Transformări implicite pentru subșiruri" #: libraries/classes/Config/Descriptions.php:203 -#, fuzzy -#| msgid "Default sorting order" msgid "Default transformations for Bool2Text" -msgstr "Ordine de sortare implicită" +msgstr "Transformări implicite pentru Bool2Text" #: libraries/classes/Config/Descriptions.php:207 -#, fuzzy -#| msgid "Default sorting order" msgid "Default transformations for External" -msgstr "Ordine de sortare implicită" +msgstr "Transformări implicite pentru extern" #: libraries/classes/Config/Descriptions.php:211 -#, fuzzy -#| msgid "Transformation options" msgid "Default transformations for PreApPend" -msgstr "Opțiuni de transformare" +msgstr "Transformări implicite pentru PreApPend" #: libraries/classes/Config/Descriptions.php:215 -#, fuzzy -#| msgid "Default sorting order" msgid "Default transformations for DateFormat" -msgstr "Ordine de sortare implicită" +msgstr "Transformări implicite pentru format dată" #: libraries/classes/Config/Descriptions.php:219 -#, fuzzy -#| msgid "Transformation options" msgid "Default transformations for Inline" -msgstr "Opțiuni de transformare" +msgstr "Transformări implicite pentru în-linie" #: libraries/classes/Config/Descriptions.php:223 -#, fuzzy -#| msgid "Transformation options" msgid "Default transformations for TextImageLink" -msgstr "Opțiuni de transformare" +msgstr "Transformări implicite pentru legătură imagine text" #: libraries/classes/Config/Descriptions.php:227 -#, fuzzy -#| msgid "Transformation options" msgid "Default transformations for TextLink" -msgstr "Opțiuni de transformare" +msgstr "Transformări implicite pentru legătură text" #: libraries/classes/Config/Descriptions.php:232 -#, fuzzy msgid "Show server listing as a list instead of a drop down." -msgstr "Afișează listarea server-elor ca o listă, în loc de un drop down." +msgstr "Arată listele de servere ca o listă în loc de un meniu derulant." #: libraries/classes/Config/Descriptions.php:234 -#, fuzzy msgid "Display servers as a list" -msgstr "Afișează server-ele ca o listă" +msgstr "Afișează serverele ca o listă" #: libraries/classes/Config/Descriptions.php:237 -#, fuzzy msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -"Dezactivează operațiile în masă de mentenanță a tabelelor, precum " -"optimizarea sau repararea tabelelor selectate dintr-o bază de date." +"Dezactivează operațiile de mentenanță în masă pentru tabele, cum ar fi " +"optimizarea sau repararea tabelelor selectate într-o bază de date." #: libraries/classes/Config/Descriptions.php:241 -#, fuzzy msgid "Disable multi table maintenance" -msgstr "Dezactivează mentenanța multi tabel" +msgstr "Dezactivează mentenanța pentru mai multe tabele" #: libraries/classes/Config/Descriptions.php:244 -#, fuzzy msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)." msgstr "" -"Setează numărul maxim de secunde pentru care un script are voie să ruleze " -"([kbd]0[/kbd] pentru nicio limită)." +"Setează numărul de secunde în care un script are voie să ruleze ([kbd]0[/kbd]" +" pentru nicio limită)." #: libraries/classes/Config/Descriptions.php:248 -#, fuzzy msgid "Maximum execution time" -msgstr "Timpul maxim de execuție" +msgstr "Timp maxim de execuție" #: libraries/classes/Config/Descriptions.php:251 #: templates/display/export/options_output.twig:17 -#, fuzzy, php-format -#| msgid "Statements" +#, php-format msgid "Use %s statement" -msgstr "Comenzi" +msgstr "Folosește declarația %s" #: libraries/classes/Config/Descriptions.php:254 prefs_manage.php:307 -#, fuzzy msgid "Save as file" msgstr "Salvează ca fișier" #: libraries/classes/Config/Descriptions.php:256 #: libraries/classes/Config/Descriptions.php:629 -#, fuzzy msgid "Character set of the file" msgstr "Setul de caractere al fișierului" @@ -4667,12 +3933,10 @@ msgstr "Setul de caractere al fișierului" #: libraries/classes/Config/Descriptions.php:290 #: libraries/classes/SqlQueryForm.php:251 #: templates/table/structure/row_stats_table.twig:6 -#, fuzzy msgid "Format" msgstr "Format" #: libraries/classes/Config/Descriptions.php:260 -#, fuzzy msgid "Compression" msgstr "Compresie" @@ -4689,7 +3953,6 @@ msgstr "Compresie" #: libraries/classes/Plugins/Export/ExportOds.php:72 #: libraries/classes/Plugins/Export/ExportOdt.php:128 #: libraries/classes/Plugins/Export/ExportTexytext.php:85 -#, fuzzy msgid "Put columns names in the first row" msgstr "Pune numele coloanelor în primul rând" @@ -4697,18 +3960,15 @@ msgstr "Pune numele coloanelor în primul rând" #: libraries/classes/Config/Descriptions.php:633 #: libraries/classes/Config/Descriptions.php:652 #: libraries/classes/Plugins/Import/ImportCsv.php:137 -#, fuzzy msgid "Columns enclosed with" -msgstr "Coloane încadrate cu" +msgstr "Coloane închise cu" #: libraries/classes/Config/Descriptions.php:266 #: libraries/classes/Config/Descriptions.php:635 #: libraries/classes/Config/Descriptions.php:654 #: libraries/classes/Plugins/Import/ImportCsv.php:148 -#, fuzzy -#| msgid "Fields escaped by" msgid "Columns escaped with" -msgstr "câmpuri realizate de" +msgstr "Coloane escapate cu" #: libraries/classes/Config/Descriptions.php:268 #: libraries/classes/Config/Descriptions.php:280 @@ -4717,49 +3977,40 @@ msgstr "câmpuri realizate de" #: libraries/classes/Config/Descriptions.php:328 #: libraries/classes/Config/Descriptions.php:336 #: libraries/classes/Config/Descriptions.php:415 -#, fuzzy msgid "Replace NULL with" -msgstr "Înlocuiește NULL cu" +msgstr "Înlocuiește NUL cu" #: libraries/classes/Config/Descriptions.php:270 #: libraries/classes/Config/Descriptions.php:282 -#, fuzzy msgid "Remove CRLF characters within columns" -msgstr "Șterge caracterele terminatoare de linie CRLF din cadrul coloanelor" +msgstr "Înlătură caracterele CRLF în coloane" #: libraries/classes/Config/Descriptions.php:272 #: libraries/classes/Config/Descriptions.php:643 #: libraries/classes/Config/Descriptions.php:664 #: libraries/classes/Plugins/Import/ImportCsv.php:122 -#, fuzzy msgid "Columns terminated with" msgstr "Coloane terminate cu" #: libraries/classes/Config/Descriptions.php:274 #: libraries/classes/Config/Descriptions.php:631 #: libraries/classes/Plugins/Import/ImportCsv.php:157 -#, fuzzy msgid "Lines terminated with" msgstr "Linii terminate cu" #: libraries/classes/Config/Descriptions.php:278 -#, fuzzy -#| msgid "Excel edition" msgid "Excel edition" -msgstr "Ediția Excel" +msgstr "Ediție Excel" #: libraries/classes/Config/Descriptions.php:284 -#, fuzzy msgid "Database name template" msgstr "Șablon nume bază de date" #: libraries/classes/Config/Descriptions.php:286 -#, fuzzy msgid "Server name template" msgstr "Șablon nume server" #: libraries/classes/Config/Descriptions.php:288 -#, fuzzy msgid "Table name template" msgstr "Șablon nume tabel" @@ -4776,21 +4027,18 @@ msgstr "Șablon nume tabel" #: libraries/classes/Plugins/Export/ExportPdf.php:107 #: libraries/classes/Plugins/Export/ExportSql.php:208 #: libraries/classes/Plugins/Export/ExportTexytext.php:62 -#, fuzzy msgid "Dump table" -msgstr "Salvează tabel" +msgstr "Dump tabel" #: libraries/classes/Config/Descriptions.php:298 #: libraries/classes/Plugins/Export/ExportLatex.php:89 -#, fuzzy msgid "Include table caption" -msgstr "Include captură tabel" +msgstr "Include text asociat tabel" #: libraries/classes/Config/Descriptions.php:304 #: libraries/classes/Config/Descriptions.php:316 -#, fuzzy msgid "Table caption" -msgstr "Captură tabel" +msgstr "Text asociat tabel" #: libraries/classes/Config/Descriptions.php:306 #: libraries/classes/Config/Descriptions.php:318 @@ -4800,35 +4048,29 @@ msgstr "Continuare captură tabel" #: libraries/classes/Config/Descriptions.php:308 #: libraries/classes/Config/Descriptions.php:320 -#, fuzzy msgid "Label key" -msgstr "Tasta label" +msgstr "Cheie etichetă" #: libraries/classes/Config/Descriptions.php:310 #: libraries/classes/Config/Descriptions.php:334 #: libraries/classes/Config/Descriptions.php:399 #: libraries/classes/Plugins/Export/ExportOdt.php:506 #: templates/columns_definitions/table_fields_definitions.twig:71 -#, fuzzy msgid "MIME type" -msgstr "Tip MIME" +msgstr "Tip de MIME" #: libraries/classes/Config/Descriptions.php:314 #: libraries/classes/Config/Descriptions.php:338 #: libraries/classes/Config/Descriptions.php:403 -#, fuzzy -#| msgid "Relations" msgid "Relationships" -msgstr "Legături" +msgstr "Relații" #: libraries/classes/Config/Descriptions.php:324 -#, fuzzy msgid "Export method" msgstr "Metodă de export" #: libraries/classes/Config/Descriptions.php:342 #: libraries/classes/Config/Descriptions.php:348 -#, fuzzy msgid "Save on server" msgstr "Salvează pe server" @@ -4836,66 +4078,54 @@ msgstr "Salvează pe server" #: libraries/classes/Config/Descriptions.php:350 #: templates/display/export/options_quick_export.twig:16 #: templates/display/export/options_output_save_dir.twig:13 -#, fuzzy msgid "Overwrite existing file(s)" -msgstr "Suprascrie fișier(e) existent(e)" +msgstr "Suprascrie fișierul existent (fișierele existente)" #: libraries/classes/Config/Descriptions.php:346 -#, fuzzy -#| msgid "horizontal (rotated headers)" msgid "Export as separate files" -msgstr "orizontal (colontitlu rotativ)" +msgstr "Exportă ca fișiere separate" #: libraries/classes/Config/Descriptions.php:352 -#, fuzzy msgid "Remember file name template" -msgstr "Șablon reține nume fișier" +msgstr "Ține minte șablonul nume fișier" #: libraries/classes/Config/Descriptions.php:354 #: libraries/classes/Operations.php:228 libraries/classes/Operations.php:851 #: libraries/classes/Operations.php:1283 -#, fuzzy msgid "Add AUTO_INCREMENT value" -msgstr "Adaugă valoare pentru AUTO_INCREMENT" +msgstr "Adaugă valoarea AUTO_INCREMENT" #: libraries/classes/Config/Descriptions.php:356 -#, fuzzy msgid "Enclose table and column names with backquotes" -msgstr "Utilizați apostroful pentru numele tabelelor și a coloanelor" +msgstr "Include numele tabelelor și coloanelor între ghilimele" #: libraries/classes/Config/Descriptions.php:358 #: libraries/classes/Config/Descriptions.php:678 -#, fuzzy msgid "SQL compatibility mode" -msgstr "Regim de compatibilitate SQL" +msgstr "Mod de compatibilitate SQL" #: libraries/classes/Config/Descriptions.php:360 -#, fuzzy msgid "Creation/Update/Check dates" -msgstr "Creare/reînnoire/verificare date" +msgstr "Creare/actualizare/verificare date" #: libraries/classes/Config/Descriptions.php:362 -#, fuzzy msgid "Use delayed inserts" -msgstr "Folosește inserări întîrziate" +msgstr "Folosește inserări întârziate" #: libraries/classes/Config/Descriptions.php:364 #: libraries/classes/Plugins/Export/ExportSql.php:154 -#, fuzzy msgid "Disable foreign key checks" -msgstr "Dezactivare verificări de cheie străine" +msgstr "Dezactivează verificările cheilor străine" #: libraries/classes/Config/Descriptions.php:366 #: libraries/classes/Plugins/Export/ExportSql.php:168 -#, fuzzy msgid "Export views as tables" -msgstr "Exportă vizualizările ca tabele" +msgstr "Exportă vizualizări ca tabele" #: libraries/classes/Config/Descriptions.php:368 -#, fuzzy -#| msgid "Missing phpMyAdmin configuration storage tables" msgid "Export related metadata from phpMyAdmin configuration storage" -msgstr "Tabele de stocare a configurării phpMyAdmin absente" +msgstr "" +"Exportă metadate similare din spațiul de stocare a configurării phpMyAdmin" #: libraries/classes/Config/Descriptions.php:370 #: libraries/classes/Config/Descriptions.php:372 @@ -4905,100 +4135,87 @@ msgstr "Tabele de stocare a configurării phpMyAdmin absente" #: libraries/classes/Config/Descriptions.php:382 #: libraries/classes/Config/Descriptions.php:401 #: libraries/classes/Operations.php:223 libraries/classes/Operations.php:1279 -#, fuzzy, php-format +#, php-format msgid "Add %s" -msgstr "Adăugare %s" +msgstr "Adaugă %s" #: libraries/classes/Config/Descriptions.php:384 -#, fuzzy msgid "Use hexadecimal for BINARY & BLOB" -msgstr "Utilizați hexazecimale pentru BINARY & BLOB" +msgstr "Folosește hexazecimale pentru BINAR și BLOB" #: libraries/classes/Config/Descriptions.php:387 msgid "" "Add IF NOT EXISTS (less efficient as indexes will be generated during table " "creation)" msgstr "" +"Adaugă DACĂ NU EXISTĂ (mai puțin eficientă pe măsură ce se vor genera " +"indexuri în timpul creării tabelului)" #: libraries/classes/Config/Descriptions.php:391 -#, fuzzy msgid "Use ignore inserts" -msgstr "Utilizați ignorare inserări" +msgstr "Folosește inserări de ignorare" #: libraries/classes/Config/Descriptions.php:395 -#, fuzzy msgid "Syntax to use when inserting data" -msgstr "Sintaxa ce va fi folosită la inserarea datelor" +msgstr "Sintaxă de folosit când se inserează date" #: libraries/classes/Config/Descriptions.php:397 #: libraries/classes/Plugins/Export/ExportSql.php:440 -#, fuzzy msgid "Maximal length of created query" -msgstr "Lungimea maximă a interogării create" +msgstr "Lungime maximă a interogării create" #: libraries/classes/Config/Descriptions.php:407 -#, fuzzy msgid "Export type" -msgstr "Tip de exportare" +msgstr "Tip de export" #: libraries/classes/Config/Descriptions.php:409 #: libraries/classes/Plugins/Export/ExportSql.php:140 -#, fuzzy msgid "Enclose export in a transaction" -msgstr "Cuprinde exportarea într-o tranzacție" +msgstr "Include exportul într-o tranzacție" #: libraries/classes/Config/Descriptions.php:411 -#, fuzzy msgid "Export time in UTC" -msgstr "Timp de export în format UTC" +msgstr "Oră export în format UTC" #: libraries/classes/Config/Descriptions.php:420 -#, fuzzy -#| msgid "" -#| "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " -#| "the referenced data, [kbd]id[/kbd] is the key value" msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value." msgstr "" -"Ordinea de sortare pentru elementele dintr-un dropdown pentru chei străine; " -"[kbd]conținut[/kbd] sunt datele referite, [kbd]id[/kbd] este valoarea cheii" +"Sortează ordinea pentru elementele dintr-o casetă cu o listă derulantă de " +"chei străine; [kbd]conținut[/kbd] este data de referință, [kbd]id[/kbd] este " +"valoarea cheii." #: libraries/classes/Config/Descriptions.php:424 -#, fuzzy msgid "Foreign key dropdown order" -msgstr "Ordinea din dropdown-ul pentru chei străine" +msgstr "Ordine listă derulantă chei străine" #: libraries/classes/Config/Descriptions.php:426 -#, fuzzy -#| msgid "A dropdown will be used if fewer items are present" msgid "A dropdown will be used if fewer items are present." -msgstr "Un dropdown va fi folosit dacă sunt prezente mai puține elemente" +msgstr "" +"Va fi folosită o listă derulantă dacă sunt prezente mai puține elemente." #: libraries/classes/Config/Descriptions.php:428 -#, fuzzy msgid "Foreign key limit" -msgstr "Limită de chei străine" +msgstr "Limită chei străine" #: libraries/classes/Config/Descriptions.php:430 msgid "Default value for foreign key checks checkbox for some queries." msgstr "" +"Valoare implicită pentru bifa verificărilor cheilor străine pentru anumite " +"interogări." #: libraries/classes/Config/Descriptions.php:432 -#, fuzzy -#| msgid "Foreign key check:" msgid "Foreign key checks" -msgstr "Verificare chei străine:" +msgstr "Verificări chei străine" #: libraries/classes/Config/Descriptions.php:434 -#, fuzzy msgid "Browse mode" -msgstr "Regim de navigare" +msgstr "Mod răsfoire" #: libraries/classes/Config/Descriptions.php:436 -#, fuzzy msgid "Customize browse mode." -msgstr "Personalizează modul de navigare." +msgstr "Personalizează modul de răsfoire." #: libraries/classes/Config/Descriptions.php:440 #: libraries/classes/Config/Descriptions.php:444 @@ -5006,80 +4223,64 @@ msgstr "Personalizează modul de navigare." #: libraries/classes/Config/Descriptions.php:498 #: libraries/classes/Config/Descriptions.php:502 #: libraries/classes/Config/Descriptions.php:559 -#, fuzzy msgid "Customize default options." -msgstr "Particularizați opțiunile implicite." +msgstr "Personalizează opțiunile implicite." #: libraries/classes/Config/Descriptions.php:442 #: libraries/classes/Config/Forms/User/ExportForm.php:75 #: libraries/classes/Config/Forms/User/ImportForm.php:29 -#, fuzzy msgid "CSV" msgstr "CSV" #: libraries/classes/Config/Descriptions.php:446 -#, fuzzy msgid "Developer" msgstr "Dezvoltator" #: libraries/classes/Config/Descriptions.php:448 -#, fuzzy msgid "Settings for phpMyAdmin developers." msgstr "Setări pentru dezvoltatorii phpMyAdmin." #: libraries/classes/Config/Descriptions.php:450 -#, fuzzy msgid "Edit mode" -msgstr "Regim de redactare" +msgstr "Mod editare" #: libraries/classes/Config/Descriptions.php:452 -#, fuzzy msgid "Customize edit mode." msgstr "Personalizează modul de editare." #: libraries/classes/Config/Descriptions.php:454 -#, fuzzy msgid "Export defaults" msgstr "Exportă valorile implicite" #: libraries/classes/Config/Descriptions.php:456 -#, fuzzy msgid "Customize default export options." -msgstr "Particularizați opțiunile implicite pentru exportare." +msgstr "Personalizează opțiunile de export implicite." #: libraries/classes/Config/Descriptions.php:458 -#, fuzzy msgid "General" -msgstr "General" +msgstr "Generale" #: libraries/classes/Config/Descriptions.php:460 -#, fuzzy msgid "Set some commonly used options." -msgstr "Setați unele opțiuni utilizate în mod obișnuit." +msgstr "Setează câteva opțiuni folosite în mod obișnuit." #: libraries/classes/Config/Descriptions.php:462 -#, fuzzy msgid "Import defaults" msgstr "Importă valorile implicite" #: libraries/classes/Config/Descriptions.php:464 -#, fuzzy msgid "Customize default common import options." -msgstr "Particularizează opțiunile obișnuite implicite pentru importare." +msgstr "Personalizează opțiunile de import obișnuite și implicite." #: libraries/classes/Config/Descriptions.php:466 -#, fuzzy msgid "Import / export" -msgstr "Importă / exportă" +msgstr "Import/export" #: libraries/classes/Config/Descriptions.php:468 -#, fuzzy msgid "Set import and export directories and compression options." -msgstr "" -"Setează directoarele de importare și exportare și opțiunile de compresie." +msgstr "Setează directorii de import și export și opțiunile de comprimare." #: libraries/classes/Config/Descriptions.php:470 -#, fuzzy msgid "LaTeX" msgstr "LaTeX" @@ -5088,175 +4289,138 @@ msgstr "LaTeX" #: libraries/classes/Navigation/NavigationTree.php:1274 #: libraries/classes/Server/Privileges.php:4536 libraries/classes/Util.php:3957 #: libraries/config.values.php:104 templates/server/sub_page_header.twig:2 -#, fuzzy msgid "Databases" msgstr "Baze de date" #: libraries/classes/Config/Descriptions.php:476 -#, fuzzy msgid "Databases display options." -msgstr "Opțiuni de afișare a bazelor de date." +msgstr "Opțiuni afișare baze de date." #: libraries/classes/Config/Descriptions.php:478 #: libraries/classes/Config/Forms/User/NaviForm.php:59 -#, fuzzy msgid "Navigation panel" -msgstr "Cadru de navigare" +msgstr "Panou de navigare" #: libraries/classes/Config/Descriptions.php:480 -#, fuzzy msgid "Customize appearance of the navigation panel." -msgstr "Personalizează aspectul cadrului de navigare." +msgstr "Personalizează aspectul panoului de navigare." #: libraries/classes/Config/Descriptions.php:482 -#, fuzzy -#| msgid "Navigation panel" msgid "Navigation tree" -msgstr "Cadru de navigare" +msgstr "Arbore de navigare" #: libraries/classes/Config/Descriptions.php:484 -#, fuzzy -#| msgid "Customize navigation panel" msgid "Customize the navigation tree." -msgstr "Personalizați cadrul de navigare" +msgstr "Personalizează arborele de navigare." #: libraries/classes/Config/Descriptions.php:486 #: libraries/classes/Server/Select.php:56 setup/frames/index.inc.php:123 -#, fuzzy msgid "Servers" msgstr "Servere" #: libraries/classes/Config/Descriptions.php:488 -#, fuzzy msgid "Servers display options." -msgstr "Opțiuni de afișare a serverelor." +msgstr "Opțiuni afișare servere." #: libraries/classes/Config/Descriptions.php:492 -#, fuzzy msgid "Tables display options." -msgstr "Opțiuni de afișare a tabelelor." +msgstr "Opțiuni afișare tabele." #: libraries/classes/Config/Descriptions.php:494 #: libraries/classes/Config/Forms/User/MainForm.php:84 -#, fuzzy msgid "Main panel" -msgstr "Cadrul principal" +msgstr "Panou principal" #: libraries/classes/Config/Descriptions.php:496 -#, fuzzy msgid "Microsoft Office" msgstr "Microsoft Office" #: libraries/classes/Config/Descriptions.php:504 -#, fuzzy msgid "Other core settings" msgstr "Alte setări de bază" #: libraries/classes/Config/Descriptions.php:506 -#, fuzzy msgid "Settings that didn't fit anywhere else." msgstr "Setări care nu se potrivesc în altă parte." #: libraries/classes/Config/Descriptions.php:508 -#, fuzzy msgid "Page titles" -msgstr "Titluri de pagini" +msgstr "Titluri pagină" #: libraries/classes/Config/Descriptions.php:511 -#, fuzzy -#| msgid "" -#| "Specify browser's title bar text. Refer to " -#| "[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be " -#| "used to get special values." msgid "" "Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] " "for magic strings that can be used to get special values." msgstr "" -"Specificați textul din bara de titlu a browser-ului. Consultați " -"[doc@cfg_TitleTable] documentația [/doc] pentru siruri de caractere magice " -"care pot fi utilizate pentru a obține valori speciale." +"Specifică textul din bara de titlu a navigatorului. Vezi " +"[doc@faq6-27]documentația[/doc] pentru șiruri magice care pot fi folosite " +"pentru a obține valori speciale." #: libraries/classes/Config/Descriptions.php:516 -#, fuzzy msgid "Security" msgstr "Securitate" #: libraries/classes/Config/Descriptions.php:519 -#, fuzzy msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL." msgstr "" -"Vă rugăm să rețineți faptul că phpMyAdmin este doar o interfață de " -"utilizator și caracteristicile sale nu limitează MySQL." +"Te rog reține că phpMyAdmin este doar o interfață pentru utilizatori și " +"funcționalitățile sale nu limitează MySQL." #: libraries/classes/Config/Descriptions.php:523 -#, fuzzy msgid "Basic settings" msgstr "Setări de bază" #: libraries/classes/Config/Descriptions.php:525 -#, fuzzy msgid "Authentication" msgstr "Autentificare" #: libraries/classes/Config/Descriptions.php:527 -#, fuzzy msgid "Authentication settings." -msgstr "Setările autentificării." +msgstr "Setări autentificare." #: libraries/classes/Config/Descriptions.php:529 -#, fuzzy msgid "Server configuration" -msgstr "Configurarea serverului" +msgstr "Configurare server" #: libraries/classes/Config/Descriptions.php:532 -#, fuzzy msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for." msgstr "" -"Configurarea avansată a serverului, nu schimbați aceste opțiuni decât dacă " -"știți pentru ce sunt acestea." +"Configurare avansată server, nu modifica aceste opțiuni decât dacă știi " +"pentru ce sunt ele." #: libraries/classes/Config/Descriptions.php:536 -#, fuzzy msgid "Enter server connection parameters." -msgstr "Introduceți parametrii de conexiune la server." +msgstr "Introdu parametrii de conectare la server." #: libraries/classes/Config/Descriptions.php:538 -#, fuzzy msgid "Configuration storage" -msgstr "Configurarea stocării" +msgstr "Spațiu de stocare pentru configurare" #: libraries/classes/Config/Descriptions.php:541 -#, fuzzy -#| msgid "" -#| "Configure phpMyAdmin configuration storage to gain access to additional " -#| "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] " -#| "in documentation" msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in " "documentation." msgstr "" -"Configurați depozitarea configurației phpMyAdmin pentru a avea acces la " -"caracteristici suplimentare, a se vedea [doc@linked-tables]depozitarea " -"configurației phpMyAdmin[/doc] în documentație" +"Configurează spațiul de stocare pentru configurarea phpMyAdmin pentru a avea " +"acces la funcționalități suplimentare, vezi [doc@linked-tables]spațiu de " +"stocare pentru configurarea phpMyAdmin[/doc] în documentație." #: libraries/classes/Config/Descriptions.php:546 -#, fuzzy msgid "Changes tracking" -msgstr "Modifică urmărirea" +msgstr "Urmărire modificări" #: libraries/classes/Config/Descriptions.php:549 -#, fuzzy msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -"Urmărirea modificărilor făcute în baza de date. Necesită depozitarea " -"configurației phpMyAdmin." +"Urmărirea modificărilor făcute în baza de date. Necesită spațiul de stocare " +"pentru configurarea phpMyAdmin." #: libraries/classes/Config/Descriptions.php:553 libraries/classes/Menu.php:358 #: libraries/classes/Menu.php:461 libraries/classes/Menu.php:574 @@ -5266,178 +4430,136 @@ msgstr "" #: libraries/classes/Util.php:3973 libraries/classes/Util.php:3990 #: libraries/config.values.php:39 libraries/config.values.php:47 #: libraries/config.values.php:111 libraries/config.values.php:117 -#, fuzzy msgid "SQL" msgstr "SQL" #: libraries/classes/Config/Descriptions.php:555 -#, fuzzy msgid "SQL Query box" -msgstr "Cutie interogare SQL" +msgstr "Casetă interogare SQL" #: libraries/classes/Config/Descriptions.php:557 -#, fuzzy msgid "Customize links shown in SQL Query boxes." -msgstr "Personalizează link-urile afișate în cutiile de interogare SQL" +msgstr "Personalizează legăturile arătate în casetele de interogare SQL." #: libraries/classes/Config/Descriptions.php:561 #: libraries/classes/Config/Forms/User/SqlForm.php:40 -#, fuzzy msgid "SQL queries" msgstr "Interogări SQL" #: libraries/classes/Config/Descriptions.php:563 -#, fuzzy -#| msgid "SQL queries settings" msgid "SQL queries settings." -msgstr "Setări pentru interogările SQL" +msgstr "Setări interogări SQL." #: libraries/classes/Config/Descriptions.php:565 -#, fuzzy msgid "Startup" msgstr "Pornire" #: libraries/classes/Config/Descriptions.php:567 -#, fuzzy -#| msgid "Customize startup page" msgid "Customize startup page." -msgstr "Personalizează pagina de pornire" +msgstr "Personalizează pagina de pornire." #: libraries/classes/Config/Descriptions.php:569 -#, fuzzy -#| msgid "Database for user" msgid "Database structure" -msgstr "Bază de date pentru utilizatorul" +msgstr "Structură bază de date" #: libraries/classes/Config/Descriptions.php:571 msgid "" "Choose which details to show in the database structure (list of tables)." msgstr "" +"Alege ce detalii vrei să arăți în structura bazei de date (lista de tabele)." #: libraries/classes/Config/Descriptions.php:573 #: libraries/classes/Plugins/Export/ExportPdf.php:277 #: templates/table/secondary_tabs.twig:3 -#, fuzzy -#| msgid "Database for user" msgid "Table structure" -msgstr "Bază de date pentru utilizatorul" +msgstr "Structură tabel" #: libraries/classes/Config/Descriptions.php:575 msgid "Settings for the table structure (list of columns)." -msgstr "" +msgstr "Setări pentru structura tabelului (lista de coloane)." #: libraries/classes/Config/Descriptions.php:577 -#, fuzzy msgid "Tabs" -msgstr "Tab-uri" +msgstr "File" #: libraries/classes/Config/Descriptions.php:579 -#, fuzzy -#| msgid "Choose how you want tabs to work" msgid "Choose how you want tabs to work." -msgstr "Alegeți cum doriți să funcționeze tab-urile" +msgstr "Alege cum vrei să funcționeze filele." #: libraries/classes/Config/Descriptions.php:581 -#, fuzzy -#| msgid "Relational schema" msgid "Display relational schema" -msgstr "Schema relațională" +msgstr "Afișează schema de relaționare" #: libraries/classes/Config/Descriptions.php:585 #: libraries/classes/Plugins/Schema/SchemaDia.php:72 #: libraries/classes/Plugins/Schema/SchemaPdf.php:80 -#, fuzzy msgid "Paper size" -msgstr "Mărime hîrtie" +msgstr "Dimensiune hârtie" #: libraries/classes/Config/Descriptions.php:591 -#, fuzzy -#| msgid "Use text field" msgid "Text fields" -msgstr "Utilizare câmp text" +msgstr "Câmpuri text" #: libraries/classes/Config/Descriptions.php:593 -#, fuzzy msgid "Customize text input fields." -msgstr "Opțiuni de exportare a bazei de date" +msgstr "Personalizează câmpurile de intrare text." #: libraries/classes/Config/Descriptions.php:595 -#, fuzzy msgid "Texy! text" -msgstr "Texy! text" +msgstr "Text Texy!" #: libraries/classes/Config/Descriptions.php:597 -#, fuzzy msgid "Customize default options" -msgstr "Opțiuni de exportare a bazei de date" +msgstr "Personalizează opțiunile implicite" #: libraries/classes/Config/Descriptions.php:599 -#, fuzzy msgid "Warnings" -msgstr "Avertismente" +msgstr "Avertizări" #: libraries/classes/Config/Descriptions.php:601 -#, fuzzy -#| msgid "Disable some of the warnings shown by phpMyAdmin" msgid "Disable some of the warnings shown by phpMyAdmin." -msgstr "Dezactivează unele dintre avertismentele afișate de phpMyAdmin" +msgstr "Dezactivează unele dintre avertizările afișate de phpMyAdmin." #: libraries/classes/Config/Descriptions.php:603 #: templates/console/display.twig:4 -#, fuzzy msgid "Console" msgstr "Consolă" #: libraries/classes/Config/Descriptions.php:606 -#, fuzzy -#| msgid "" -#| "Enable [a@https://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " -#| "import and export operations" msgid "Enable gzip compression for import and export operations." -msgstr "" -"Permite compresia [a@https://en.wikipedia.org/wiki/Bzip2]bzip2[/a] pentru " -"operațiile de import și export" +msgstr "Activează compresia gzip pentru operațiile de import și export." #: libraries/classes/Config/Descriptions.php:610 -#, fuzzy msgid "GZip" msgstr "GZip" #: libraries/classes/Config/Descriptions.php:612 -#, fuzzy msgid "Extra parameters for iconv" -msgstr "Parametrii suplimentari pentru iconv" +msgstr "Parametri suplimentari pentru iconv" #: libraries/classes/Config/Descriptions.php:615 -#, fuzzy -#| msgid "" -#| "If enabled, phpMyAdmin continues computing multiple-statement queries " -#| "even if one of the queries failed" msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed." msgstr "" -"Dacă opțiunea este activată, phpMyAdmin continuă calcularea interogărilor cu " -"mai multe declarații, chiar dacă una dintre interogări nu a reușit" +"Dacă este activată, phpMyAdmin continuă calcularea interogărilor cu mai " +"multe declarații, chiar dacă una dintre interogări a eșuat." #: libraries/classes/Config/Descriptions.php:619 -#, fuzzy msgid "Ignore multiple statement errors" -msgstr "Ignoră erorile pentru declarațiile multiple" +msgstr "Ignoră erorile pentru mai multe declarații" #: libraries/classes/Config/Descriptions.php:622 -#, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be a good way to import large files, however it can break " "transactions." msgstr "" -"Permite întreruperea importului în cazul în care scriptul detectează că se " -"apropie de limita de timp. Aceasta poate fi o metodă bună de a importa " -"fișiere mari, deși poate strica tranzacții." +"Permite întreruperea importului dacă scriptul detectează că se apropie de " +"limita de timp. Aceasta ar putea fi o modalitate bună pentru a importa " +"fișiere mari, dar totuși poate întrerupe tranzacțiile." #: libraries/classes/Config/Descriptions.php:627 -#, fuzzy msgid "Partial import: allow interrupt" msgstr "Import parțial: permite întreruperi" @@ -5445,9 +4567,8 @@ msgstr "Import parțial: permite întreruperi" #: libraries/classes/Config/Descriptions.php:656 #: libraries/classes/Plugins/Import/ImportCsv.php:87 #: libraries/classes/Plugins/Import/ImportLdi.php:81 -#, fuzzy msgid "Do not abort on INSERT error" -msgstr "Nu abandona la întâmpinarea unei erori INSERT" +msgstr "Nu anulează la eroarea de INSERARE" #: libraries/classes/Config/Descriptions.php:639 #: libraries/classes/Config/Descriptions.php:660 @@ -5457,104 +4578,81 @@ msgstr "" #: libraries/classes/Config/Descriptions.php:641 #: libraries/classes/Config/Descriptions.php:662 msgid "Update data when duplicate keys found on import" -msgstr "" +msgstr "Actualizează datele când sunt găsite chei duplicat la import" #: libraries/classes/Config/Descriptions.php:646 -#, fuzzy -#| msgid "" -#| "Default format; be aware that this list depends on location (database, " -#| "table) and only SQL is always available" msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available." msgstr "" -"Formatul implicit; fiți conștienți de faptul că această listă depinde de " -"locație (bază de date, tabel) și numai SQL este întotdeauna disponibil" +"Format implicit; fii convins că această listă depinde de locație (bază de " +"date, tabel) și numai SQL este întotdeauna disponibil." #: libraries/classes/Config/Descriptions.php:650 -#, fuzzy msgid "Format of imported file" -msgstr "Formatul fișierului importat" +msgstr "Format pentru fișierul importat" #: libraries/classes/Config/Descriptions.php:658 #: libraries/classes/Plugins/Import/ImportLdi.php:87 -#, fuzzy msgid "Use LOCAL keyword" -msgstr "Folosește cuvîntul-cheie LOCAL" +msgstr "Folosește cuvântul cheie LOCAL" #: libraries/classes/Config/Descriptions.php:666 -#, fuzzy msgid "Column names in first row" -msgstr "Pune numele coloanelor în primul rând" +msgstr "Numele coloanelor în primul rând" #: libraries/classes/Config/Descriptions.php:668 #: libraries/classes/Plugins/Import/ImportOds.php:72 -#, fuzzy msgid "Do not import empty rows" msgstr "Nu importa rânduri goale" #: libraries/classes/Config/Descriptions.php:670 msgid "Import currencies ($5.00 to 5.00)" -msgstr "" +msgstr "Importă monede (5.00$ în 5.00)" #: libraries/classes/Config/Descriptions.php:672 -#, fuzzy msgid "Import percentages as proper decimals (12.00% to .12)" -msgstr "Importă procentele ca zecimale (12.00% ca .12)" +msgstr "Importă procentele ca zecimale corecte (12.00% în .12)" #: libraries/classes/Config/Descriptions.php:674 -#, fuzzy -#| msgid "Number of queries to skip from start" msgid "Number of queries to skip from start." -msgstr "Numărul de interogări peste care să sari de la început" +msgstr "Număr de interogări de sărit de la început." #: libraries/classes/Config/Descriptions.php:676 -#, fuzzy msgid "Partial import: skip queries" -msgstr "Import parțial: sari peste interogări" +msgstr "Import parțial: omite interogările" #: libraries/classes/Config/Descriptions.php:680 -#, fuzzy msgid "Do not use AUTO_INCREMENT for zero values" -msgstr "Nu folosi AUTO_INCREMENT pentru valorile de zero" +msgstr "Nu folosi AUTO_INCREMENT pentru valorile zero" #: libraries/classes/Config/Descriptions.php:682 -#, fuzzy msgid "Read as multibytes" -msgstr "Citiri gresite" +msgstr "Citește ca multi-octeți" #: libraries/classes/Config/Descriptions.php:684 -#, fuzzy msgid "Initial state for sliders" -msgstr "Starea inițială pentru slidere" +msgstr "Stare inițială pentru carusele" #: libraries/classes/Config/Descriptions.php:686 -#, fuzzy -#| msgid "How many rows can be inserted at one time" msgid "How many rows can be inserted at one time." -msgstr "Câte rânduri pot fi inserate deodată" +msgstr "Câte rânduri pot fi inserate la un moment dat." #: libraries/classes/Config/Descriptions.php:688 -#, fuzzy msgid "Number of inserted rows" -msgstr "Numărul de rânduri inserate" +msgstr "Număr de rânduri inserate" # Numărul maxim de caractere afișate în orice coloană non-numerică în vederea de cautare #: libraries/classes/Config/Descriptions.php:690 -#, fuzzy -#| msgid "" -#| "Maximum number of characters shown in any non-numeric column on browse " -#| "view" msgid "" "Maximum number of characters shown in any non-numeric column on browse view." msgstr "" -"Numărul maxim de caractere afișate în orice coloană non-numerică în view-ul " -"de browse" +"Numărul maxim de caractere arătat în orice coloană nenumerică în " +"vizualizarea de răsfoire." #: libraries/classes/Config/Descriptions.php:692 -#, fuzzy msgid "Limit column characters" -msgstr "Limitează caracterele de pe coloană" +msgstr "Limitează caracterele coloanei" #: libraries/classes/Config/Descriptions.php:695 #, fuzzy @@ -5569,713 +4667,562 @@ msgstr "" "la mai multe servere." #: libraries/classes/Config/Descriptions.php:700 -#, fuzzy msgid "Delete all cookies on logout" -msgstr "Șterge toate cookie-urile la delogare" +msgstr "Șterge toate cookie-urile la dezautentificare" #: libraries/classes/Config/Descriptions.php:703 -#, fuzzy -#| msgid "" -#| "Define whether the previous login should be recalled or not in cookie " -#| "authentication mode" msgid "" "Define whether the previous login should be recalled or not in [kbd]cookie[/" "kbd] authentication mode." msgstr "" -"Definiți dacă logarea anterioară ar trebui să fie amintită sau nu în modul " -"de autentificare prin cookie-uri" +"Definește dacă autentificarea anterioară ar trebui să fie amintită sau nu în " +"modul de autentificare cu [kbd]cookie-uri[/kbd]." #: libraries/classes/Config/Descriptions.php:707 -#, fuzzy msgid "Recall user name" -msgstr "Amintește nume de utilizator" +msgstr "Reamintește numele de utilizator" #: libraries/classes/Config/Descriptions.php:710 -#, fuzzy msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " "and will be deleted as soon as you close the browser window. This is " "recommended for non-trusted environments." msgstr "" -"Definește cât timp (în secunde) ar trebui stocat un cookie în browser. " -"Valoarea implicită de 0 înseamnă că va fi stocat doar pentru sesiunea " -"curentă și va fi șters îndată ce se închide fereastra browser-ului. Acest " -"lucru este recomandat pentru mediile nesigure." +"Definește cât timp (în secunde) ar trebui stocat în navigator un cookie de " +"autentificare. Valoarea implicită, 0, înseamnă că va fi stocat doar pentru " +"sesiunea curentă și va fi șters îndată ce închizi fereastra navigatorului. " +"Acest lucru este recomandat pentru mediile nesigure." #: libraries/classes/Config/Descriptions.php:716 -#, fuzzy msgid "Login cookie store" -msgstr "Locul de depozitarea al cookie-ului de login" +msgstr "Stocare cookie-uri de autentificare" #: libraries/classes/Config/Descriptions.php:718 -#, fuzzy -#| msgid "Define how long (in seconds) a login cookie is valid" msgid "Define how long (in seconds) a login cookie is valid." -msgstr "Definește cât timp (în secunde) un cookie de login este valid" +msgstr "Definește cât timp (în secunde) este valid un cookie de autentificare." #: libraries/classes/Config/Descriptions.php:720 -#, fuzzy msgid "Login cookie validity" -msgstr "Validitatea cookie-ului de login" +msgstr "Validitate cookie-uri de autentificare" #: libraries/classes/Config/Descriptions.php:722 -#, fuzzy -#| msgid "Double size of textarea for LONGTEXT columns" msgid "Double size of textarea for LONGTEXT columns." -msgstr "Mărime dublă a textarea-ului pentru coloanele LONGTEXT" +msgstr "Dublează dimensiunea zonei text pentru coloanele cu MULT TEXT." #: libraries/classes/Config/Descriptions.php:724 -#, fuzzy msgid "Bigger textarea for LONGTEXT" -msgstr "Textarea-uri mai mari pentru LONGTEXT" +msgstr "Zonă text mai mare pentru MULT TEXT" #: libraries/classes/Config/Descriptions.php:726 -#, fuzzy -#| msgid "Maximum number of characters used when a SQL query is displayed" msgid "Maximum number of characters used when a SQL query is displayed." -msgstr "Numărul maxim de caractere folosite când se afișează o interogare SQL" +msgstr "Numărul maxim de caractere folosit când este afișată o interogare SQL." #: libraries/classes/Config/Descriptions.php:728 -#, fuzzy msgid "Maximum displayed SQL length" -msgstr "Lungimea maximă de afișare SQL" +msgstr "Lungime maximă SQL de afișat" #: libraries/classes/Config/Descriptions.php:730 #: libraries/classes/Config/Descriptions.php:755 #: libraries/classes/Config/Descriptions.php:935 -#, fuzzy msgid "Users cannot set a higher value" msgstr "Utilizatorii nu pot seta o valoare mai mare" #: libraries/classes/Config/Descriptions.php:732 -#, fuzzy -#| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of databases displayed in database list." -msgstr "Numărul maxim de tabele afișate în lista de tabele" +msgstr "Numărul maxim de baze de date afișat în lista cu baze de date." #: libraries/classes/Config/Descriptions.php:734 -#, fuzzy msgid "Maximum databases" -msgstr "Numărul maxim de baze de date" +msgstr "Număr maxim baze de date" #: libraries/classes/Config/Descriptions.php:737 msgid "" "The number of items that can be displayed on each page on the first level of " "the navigation tree." msgstr "" +"Numărul de elemente care poate fi afișat pe fiecare pagină pe primul nivel " +"al arborelui de navigare." #: libraries/classes/Config/Descriptions.php:741 -#, fuzzy -#| msgid "Maximum size for input field" msgid "Maximum items on first level" -msgstr "Dimensiunea maximă a câmpului de intrare" +msgstr "Număr maxim de elemente pe primul nivel" #: libraries/classes/Config/Descriptions.php:743 msgid "" "The number of items that can be displayed on each page of the navigation " "tree." msgstr "" +"Numărul de elemente care poate fi afișat pe fiecare pagină a arborelui de " +"navigare." #: libraries/classes/Config/Descriptions.php:745 msgid "Maximum items in branch" -msgstr "" +msgstr "Număr maxim de elemente în ramură" #: libraries/classes/Config/Descriptions.php:748 -#, fuzzy msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, \"Previous\" and \"Next\" links will be shown." msgstr "" -"Numărul de rânduri afișate la vizualizarea unui set de rezultate. Dacă setul " -"de rezultate conține mai multe rânduri, link-urile de \"Anterior\" și \"" -"Următor\" vor fi afișate." +"Număr de rânduri afișat la răsfoirea unui set de rezultate. Dacă setul de " +"rezultate conține mai multe rânduri, vor fi afișate legăturile „Anterior” și " +"„Următor”." #: libraries/classes/Config/Descriptions.php:753 -#, fuzzy msgid "Maximum number of rows to display" -msgstr "Numărul maxim de rânduri afișate" +msgstr "Număr maxim de rânduri de afișat" #: libraries/classes/Config/Descriptions.php:757 -#, fuzzy -#| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of tables displayed in table list." -msgstr "Numărul maxim de tabele afișate în lista de tabele" +msgstr "Numărul maxim de tabele afișat în lista cu tabele." #: libraries/classes/Config/Descriptions.php:759 -#, fuzzy msgid "Maximum tables" -msgstr "Numărul maxim de tabele" +msgstr "Număr maxim de tabele" #: libraries/classes/Config/Descriptions.php:762 -#, fuzzy -#| msgid "" -#| "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " -#| "([kbd]0[/kbd] for no limit)" msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]-1[/kbd] for no limit and [kbd]0[/kbd] for no change)." msgstr "" -"Numărul de bytes pe care un script are voie sa îl aloce, ex: [kbd]32M[/kbd] " -"([kbd]0[/kbd] pentru nicio limită)" +"Numărul de octeți pe care un script poate să-l aloce, de exemplu: " +"[kbd]32M[/kbd] ([kbd]-1[/kbd] pentru nicio limită și ([kbd]0[/kbd] pentru " +"nicio modificare)." #: libraries/classes/Config/Descriptions.php:766 -#, fuzzy msgid "Memory limit" -msgstr "Limita de memorie" +msgstr "Limită de memorie" #: libraries/classes/Config/Descriptions.php:768 msgid "In the navigation panel, replaces the database tree with a selector" msgstr "" +"În panoul de navigare, înlocuiește arborele bazei de date cu un selector" #: libraries/classes/Config/Descriptions.php:770 -#, fuzzy -#| msgid "Show hidden navigation tree items." msgid "Show databases navigation as tree" -msgstr "Afişează itemii ascunşi din arborele din cadrul din stânga." +msgstr "Arată navigarea în baza de date sub formă de arbore" #: libraries/classes/Config/Descriptions.php:772 -#, fuzzy -#| msgid "Navigation panel" msgid "Navigation panel width" -msgstr "Cadru de navigare" +msgstr "Lățime panou de navigare" #: libraries/classes/Config/Descriptions.php:774 -#, fuzzy -#| msgid "Show logo in left frame" msgid "Set to 0 to collapse navigation panel." -msgstr "Afișează logo în cadrul din stânga" +msgstr "Setează la 0 pentru a restrânge panoul de navigare." #: libraries/classes/Config/Descriptions.php:776 msgid "Link with main panel by highlighting the current database or table." msgstr "" +"Conectează-te cu panoul principal prin evidențierea bazei de date curente " +"sau a tabelului actual." #: libraries/classes/Config/Descriptions.php:780 -#, fuzzy -#| msgid "Show logo in left frame" msgid "Show logo in navigation panel." -msgstr "Afișează logo în cadrul din stânga" +msgstr "Arată logo în panoul de navigare." #: libraries/classes/Config/Descriptions.php:782 -#, fuzzy msgid "Display logo" msgstr "Afișează logo" #: libraries/classes/Config/Descriptions.php:784 -#, fuzzy -#| msgid "URL where logo in the navigation frame will point to" msgid "URL where logo in the navigation panel will point to." -msgstr "URL-ul către care va indica logo-ul din cadrul de navigare" +msgstr "URL-ul la care va indica logoul din panoul de navigare." #: libraries/classes/Config/Descriptions.php:786 -#, fuzzy msgid "Logo link URL" -msgstr "URL-ul către care indică link-ul logo-ului" +msgstr "URL legătură logo" #: libraries/classes/Config/Descriptions.php:789 -#, fuzzy msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])." msgstr "" -"Deschide pagina link-ată în fereastra principală ([kbd]main[/kbd]) sau într-" -"o fereastră nouă ([kbd]new[/kbd])" +"Deschide pagina legată în fereastra principală ([kbd]principală[/kbd]) sau " +"într-o fereastră nouă ([kbd]nouă[/kbd])." #: libraries/classes/Config/Descriptions.php:793 -#, fuzzy msgid "Logo link target" -msgstr "Ținta link-ului din logo" +msgstr "Destinație legătură logo" #: libraries/classes/Config/Descriptions.php:795 -#, fuzzy -#| msgid "Display server choice at the top of the left frame" msgid "Display server choice at the top of the navigation panel." -msgstr "" -"Afișează meniul de alegere a server-ului în partea de sus a cadrului din " -"stânga" +msgstr "Afișează alegerea serverului în partea de sus a panoului de navigare." #: libraries/classes/Config/Descriptions.php:797 -#, fuzzy msgid "Display servers selection" -msgstr "Afișează colecția de servere" +msgstr "Afișează selecția serverelor" #: libraries/classes/Config/Descriptions.php:799 -#, fuzzy msgid "Target for quick access icon" -msgstr "Ținta iconiței de acces rapid" +msgstr "Destinație pentru icon de acces rapid" #: libraries/classes/Config/Descriptions.php:801 -#, fuzzy -#| msgid "Target for quick access icon" msgid "Target for second quick access icon" -msgstr "Ținta iconiței de acces rapid" +msgstr "Destinație pentru al doilea icon de acces rapid" #: libraries/classes/Config/Descriptions.php:804 -#, fuzzy -#| msgid "Minimum number of tables to display the table filter box" msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." -msgstr "Numărul minim de tabele pentru a afişa caseta cu filtrul de tabele" +msgstr "" +"Definește numărul minim de elemente (tabele, vizualizări, rutine și " +"evenimente) pentru a afișa o casetă de filtre." #: libraries/classes/Config/Descriptions.php:808 -#, fuzzy -#| msgid "Minimum number of tables to display the table filter box" msgid "Minimum number of items to display the filter box" -msgstr "Numărul minim de tabele pentru a afişa caseta cu filtrul de tabele" +msgstr "Număr minim de elemente pentru a afișa caseta de filtre" #: libraries/classes/Config/Descriptions.php:810 -#, fuzzy -#| msgid "Minimum number of tables to display the table filter box" msgid "Minimum number of databases to display the database filter box" -msgstr "Numărul minim de tabele pentru a afişa caseta cu filtrul de tabele" +msgstr "" +"Număr minim de baze de date pentru a afișa caseta de filtrare a bazelor de " +"date" #: libraries/classes/Config/Descriptions.php:813 -#, fuzzy -#| msgid "" -#| "Only light version; display databases in a tree (determined by the " -#| "separator defined below)" msgid "" "Group items in the navigation tree (determined by the separator defined in " "the Databases and Tables tabs above)." msgstr "" -"Doar versiunea light; afișează bazele de date într-un arbore (determinat de " -"separatorul definit mai jos)" +"Grupează elementele în arborele de navigare (determinate de separatorul " +"definit în filele Baze de date și Tabele de mai sus)." #: libraries/classes/Config/Descriptions.php:817 msgid "Group items in the tree" -msgstr "" +msgstr "Grupează elemente în arbore" #: libraries/classes/Config/Descriptions.php:819 -#, fuzzy msgid "String that separates databases into different tree levels." -msgstr "" -"Șir de caractere care separă bazele de date în diferite niveluri ale " -"arborelui" +msgstr "Șir care separă bazele de date pe diferite niveluri în arbore." #: libraries/classes/Config/Descriptions.php:821 -#, fuzzy msgid "Database tree separator" -msgstr "Separator arbore baze de date" +msgstr "Separator arbore bază de date" #: libraries/classes/Config/Descriptions.php:823 -#, fuzzy -#| msgid "String that separates tables into different tree levels" msgid "String that separates tables into different tree levels." -msgstr "" -"Șir de caractere care separă tabelele în diferite niveluri ale arborelui" +msgstr "Șir care separă tabelele pe diferite niveluri în arbore." #: libraries/classes/Config/Descriptions.php:825 -#, fuzzy msgid "Table tree separator" -msgstr "Separator arbore tabele" +msgstr "Separator arbore tabel" #: libraries/classes/Config/Descriptions.php:827 -#, fuzzy msgid "Maximum table tree depth" -msgstr "Adâncimea maximă a arborelui de tabele" +msgstr "Adâncime maximă arbore de tabele" #: libraries/classes/Config/Descriptions.php:829 -#, fuzzy -#| msgid "Highlight server under the mouse cursor" msgid "Highlight server under the mouse cursor." -msgstr "Evidențiați server-ul deasupra căruia se află cursorul mouse-ului" +msgstr "Evidențiază serverul sub cursorul mausului." # Activați evidențierea #: libraries/classes/Config/Descriptions.php:831 -#, fuzzy msgid "Enable highlighting" -msgstr "Activați highlighting-ul" +msgstr "Activează evidențierea" #: libraries/classes/Config/Descriptions.php:833 msgid "" "Whether to offer the possibility of tree expansion in the navigation panel." msgstr "" +"Fie pentru a oferi posibilitatea de a extinde arborele în panoul de navigare." #: libraries/classes/Config/Descriptions.php:835 -#, fuzzy msgid "Enable navigation tree expansion" -msgstr "bară de navigare cu iconițe" +msgstr "Activează extinderea arborelui în navigare" #: libraries/classes/Config/Descriptions.php:837 -#, fuzzy -#| msgid "Show tables" msgid "Show tables in tree" -msgstr "Arată tabelele" +msgstr "Arată tabele în arbore" #: libraries/classes/Config/Descriptions.php:839 -#, fuzzy -#| msgid "Show hidden navigation tree items." msgid "Whether to show tables under database in the navigation tree" -msgstr "Afişează itemii ascunşi din arborele din cadrul din stânga." +msgstr "Fie pentru a arăta tabelele bazei de date în arborele de navigare" #: libraries/classes/Config/Descriptions.php:841 -#, fuzzy -#| msgid "Show versions" msgid "Show views in tree" -msgstr "Arată versiunile" +msgstr "Arată vizualizări în arbore" #: libraries/classes/Config/Descriptions.php:843 -#, fuzzy -#| msgid "Show hidden navigation tree items." msgid "Whether to show views under database in the navigation tree" -msgstr "Afişează itemii ascunşi din arborele din cadrul din stânga." +msgstr "Fie pentru a arăta vizualizările bazei de date în arborele de navigare" #: libraries/classes/Config/Descriptions.php:845 -#, fuzzy -#| msgid "Show function fields" msgid "Show functions in tree" -msgstr "Afișează câmpurile de funcții" +msgstr "Arată funcții în arbore" #: libraries/classes/Config/Descriptions.php:847 msgid "Whether to show functions under database in the navigation tree" -msgstr "" +msgstr "Fie pentru a arăta funcțiile bazei de date în arborele de navigare" #: libraries/classes/Config/Descriptions.php:849 -#, fuzzy -#| msgid "Show processes" msgid "Show procedures in tree" -msgstr "Afișează procesele" +msgstr "Arată proceduri în arbore" #: libraries/classes/Config/Descriptions.php:851 msgid "Whether to show procedures under database in the navigation tree" -msgstr "" +msgstr "Fie pentru a arăta procedurile bazei de date în arborele de navigare" #: libraries/classes/Config/Descriptions.php:853 -#, fuzzy -#| msgid "Show versions" msgid "Show events in tree" -msgstr "Arată versiunile" +msgstr "Arată evenimente în arbore" #: libraries/classes/Config/Descriptions.php:855 -#, fuzzy -#| msgid "Show hidden navigation tree items." msgid "Whether to show events under database in the navigation tree" -msgstr "Afişează itemii ascunşi din arborele din cadrul din stânga." +msgstr "Fie pentru a arăta evenimentele bazei de date în arborele de navigare" #: libraries/classes/Config/Descriptions.php:857 -#, fuzzy -#| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of recently used tables; set 0 to disable." -msgstr "Numărul maxim de tabele recent folosite; setați 0 pentru dezactivare" +msgstr "Număr maxim de tabele folosite recent; setează la 0 pentru dezactivare." #: libraries/classes/Config/Descriptions.php:859 -#, fuzzy -#| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of favorite tables; set 0 to disable." -msgstr "Numărul maxim de tabele recent folosite; setați 0 pentru dezactivare" +msgstr "Număr maxim de tabele favorite; setează la 0 pentru dezactivare." #: libraries/classes/Config/Descriptions.php:861 -#, fuzzy msgid "Recently used tables" -msgstr "Tabele recent folosite" +msgstr "Tabele folosite recent" #: libraries/classes/Config/Descriptions.php:863 #: libraries/classes/RecentFavoriteTable.php:255 -#, fuzzy msgid "Favorite tables" msgstr "Tabele favorite" #: libraries/classes/Config/Descriptions.php:865 -#, fuzzy -#| msgid "These are Edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links." -msgstr "Acestea sunt link-urile de Editare, Copiere și Ștergere" +msgstr "Acestea sunt legăturile de editare, copiere și ștergere." #: libraries/classes/Config/Descriptions.php:867 -#, fuzzy msgid "Where to show the table row links" -msgstr "Unde să fie afișate link-urile din rândurile tabelelor" +msgstr "Unde să fie arătate legăturile rândurilor din tabel" #: libraries/classes/Config/Descriptions.php:869 msgid "Whether to show row links even in the absence of a unique key." msgstr "" +"Fie pentru a arăta legăturile rândurilor chiar și în absența unei chei unice." #: libraries/classes/Config/Descriptions.php:871 msgid "Show row links anyway" -msgstr "" +msgstr "Arată oricum legăturile rândurilor" #: libraries/classes/Config/Descriptions.php:873 #: libraries/classes/Config/Descriptions.php:875 -#, fuzzy -#| msgid "Disable foreign key checks" msgid "Disable shortcut keys" -msgstr "Dezactivare verificări de cheie străine" +msgstr "Dezactivează scurtăturile de taste" #: libraries/classes/Config/Descriptions.php:877 -#, fuzzy -#| msgid "Use natural order for sorting table and database names" msgid "Use natural order for sorting table and database names." msgstr "" "Folosește ordinea naturală pentru sortarea numelor tabelelor și bazelor de " -"date" +"date." #: libraries/classes/Config/Descriptions.php:879 -#, fuzzy msgid "Natural order" msgstr "Ordine naturală" #: libraries/classes/Config/Descriptions.php:881 #: libraries/classes/Config/Descriptions.php:915 #: libraries/classes/Config/Descriptions.php:919 -#, fuzzy -#| msgid "Use only icons, only text or both" msgid "Use only icons, only text or both." -msgstr "Folosește doar iconițe. doar text sau ambele" +msgstr "Folosește numai iconuri, numai text sau ambele." #: libraries/classes/Config/Descriptions.php:883 -#, fuzzy msgid "Table navigation bar" -msgstr "bară de navigare cu iconițe" +msgstr "Bară de navigare tabel" #: libraries/classes/Config/Descriptions.php:885 -#, fuzzy -#| msgid "use GZip output buffering for increased speed in HTTP transfers" msgid "Use GZip output buffering for increased speed in HTTP transfers." msgstr "" -"folosește GZip output buffering pentru viteză mărită în transferurile HTTP" +"Folosește tamponul de ieșire GZip pentru a crește viteza în transferurile " +"HTTP." #: libraries/classes/Config/Descriptions.php:887 -#, fuzzy msgid "GZip output buffering" -msgstr "GZip output buffering" +msgstr "Tampon de ieșire GZip" #: libraries/classes/Config/Descriptions.php:890 -#, fuzzy -#| msgid "" -#| "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " -#| "DATETIME and TIMESTAMP, ascending order otherwise" msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise." msgstr "" -"[kbd]SMART[/kbd] - adică ordine descrescătoare pentru coloane de tipul TIME, " -"DATE, DATETIME și TIMESTAMP, sau crescătoare altfel" +"[kbd]INTELIGENT[/kbd] - adică ordine descrescătoare pentru coloane de tipul " +"ORĂ, DATĂ, DATĂ ȘI ORĂ și DATARE, în caz contrar ordine crescătoare." #: libraries/classes/Config/Descriptions.php:894 -#, fuzzy msgid "Default sorting order" msgstr "Ordine de sortare implicită" #: libraries/classes/Config/Descriptions.php:896 -#, fuzzy -#| msgid "Use persistent connections to MySQL databases" msgid "Use persistent connections to MySQL databases." -msgstr "Folosește conexiuni persistente la baze de date MySQL" +msgstr "Folosește conexiuni persistente la bazele de date MySQL." #: libraries/classes/Config/Descriptions.php:898 -#, fuzzy msgid "Persistent connections" msgstr "Conexiuni persistente" #: libraries/classes/Config/Descriptions.php:901 -#, fuzzy msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found." msgstr "" -"Dezactivează avertismentul implicit care este afişat pe pagina cu detalii de " -"structură ale bazei de date, dacă oricare dintre tabelele necesare pentru " -"stocarea configurării phpMyAdmin nu a putut fi găsită" +"Dezactivează avertizarea implicită care este afișată pe pagina cu detalii de " +"structură bază de date dacă oricare dintre tabelele necesare pentru stocarea " +"configurării phpMyAdmin nu a putut fi găsit." #: libraries/classes/Config/Descriptions.php:906 -#, fuzzy msgid "Missing phpMyAdmin configuration storage tables" -msgstr "Tabele de stocare a configurării phpMyAdmin absente" +msgstr "Lipsesc tabelele de stocare pentru configurarea phpMyAdmin" #: libraries/classes/Config/Descriptions.php:909 -#, fuzzy msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words." msgstr "" -"Dezactivează avertismentul implicit care este afişat pe pagina cu detalii de " -"structură ale bazei de date, dacă oricare dintre tabelele necesare pentru " -"stocarea configurării phpMyAdmin nu a putut fi găsită" +"Dezactivează avertizarea implicită care este afișată pe pagina Structură " +"dacă în numele coloanelor dintr-un tabel sunt rezervate cuvintele MySQL." #: libraries/classes/Config/Descriptions.php:913 msgid "MySQL reserved word warning" -msgstr "" +msgstr "Avertizare cuvânt MySQL rezervat" #: libraries/classes/Config/Descriptions.php:917 -#, fuzzy -#| msgid "Allow to display all the rows" msgid "How to display the menu tabs" -msgstr "Permite afișarea tuturor rândurilor" +msgstr "Cum se afișează filele de meniu" #: libraries/classes/Config/Descriptions.php:921 msgid "How to display various action links" -msgstr "" +msgstr "Cum se afișează diferite legături de acțiune" #: libraries/classes/Config/Descriptions.php:923 -#, fuzzy -#| msgid "Disallow BLOB and BINARY columns from editing" msgid "Disallow BLOB and BINARY columns from editing." -msgstr "Nu permite editarea coloanelor BLOB și BINARY" +msgstr "Dezactivează coloanele BLOB și BINAR de la editare." #: libraries/classes/Config/Descriptions.php:925 -#, fuzzy msgid "Protect binary columns" msgstr "Protejează coloanele binare" #: libraries/classes/Config/Descriptions.php:928 -#, fuzzy msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -"Activează dacă dorești istoria interogărilor bazate pe baza de date (are " -"nevoie de stocarea configurărilor phpMyAdmin). Dacă este dezactivat, se " -"folosesc funcții JS pentru afișarea istoriei interogprilor ( pierdute la " -"închiderea ferestrei )." +"Activează dacă vrei istoricul interogărilor în funcție de bazele de date (" +"necesită spațiu de stocare pentru configurarea phpMyAdmin). Dacă " +"dezactivezi, se folosesc rutine JS pentru a afișa istoricul interogărilor (" +"se pierde la închiderea ferestrei)." #: libraries/classes/Config/Descriptions.php:933 -#, fuzzy msgid "Permanent query history" msgstr "Istoric interogări permanent" #: libraries/classes/Config/Descriptions.php:937 -#, fuzzy -#| msgid "How many queries are kept in history" msgid "How many queries are kept in history." -msgstr "Câte interogări sunt ținute în istorie" +msgstr "Câte interogări sunt păstrate în istoric." #: libraries/classes/Config/Descriptions.php:939 -#, fuzzy msgid "Query history length" -msgstr "Lungimea istoriei de interogări" +msgstr "Durată istoric interogări" #: libraries/classes/Config/Descriptions.php:941 -#, fuzzy -#| msgid "Select which functions will be used for character set conversion" msgid "Select which functions will be used for character set conversion." msgstr "" -"Selectați care funcții vor fi folosite pentru conversia seturilor de " -"caractere" +"Selectează care funcții vor fi folosite pentru conversia seturilor de " +"caractere." #: libraries/classes/Config/Descriptions.php:943 -#, fuzzy msgid "Recoding engine" -msgstr "Motor de înregistrare" +msgstr "Motor de recodare" #: libraries/classes/Config/Descriptions.php:945 -#, fuzzy -#| msgid "When browsing tables, the sorting of each table is remembered" msgid "When browsing tables, the sorting of each table is remembered." msgstr "" -"Când se vizualizează tabele, ordinea de sortare a fiecărui tabel este " -"reținută" +"Când se răsfoiesc tabele, este memorată ordinea de sortare a fiecărui tabel." #: libraries/classes/Config/Descriptions.php:947 -#, fuzzy msgid "Remember table's sorting" -msgstr "Reține sortarea tabelei" +msgstr "Memorează sortarea tabelului" #: libraries/classes/Config/Descriptions.php:949 msgid "Default sort order for tables with a primary key." -msgstr "" +msgstr "Ordine de sortare implicită pentru tabele cu o cheie principală." #: libraries/classes/Config/Descriptions.php:951 -#, fuzzy -#| msgid "Default sorting order" msgid "Primary key default sort order" -msgstr "Ordine de sortare implicită" +msgstr "Ordine de sortare implicită pentru cheie principală" #: libraries/classes/Config/Descriptions.php:953 -#, fuzzy -#| msgid "" -#| "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgid "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature." msgstr "" -"Repetă header-ul la fiecare X celule, [kbd]0[/kbd] dezactivează această " -"opțiune" +"Repetă anteturile la fiecare X celule, [kbd]0[/kbd] dezactivează această " +"funcționalitate." #: libraries/classes/Config/Descriptions.php:955 -#, fuzzy msgid "Repeat headers" -msgstr "Repetă header-ul" +msgstr "Repetă anteturile" #: libraries/classes/Config/Descriptions.php:957 msgid "Grid editing: trigger action" -msgstr "" +msgstr "Editare grilă: declanșează acțiunea" #: libraries/classes/Config/Descriptions.php:959 -#, fuzzy -#| msgid "Relational display column" msgid "Relational display" -msgstr "Afișarea câmpului relațional" +msgstr "Afișare relațională" #: libraries/classes/Config/Descriptions.php:961 -#, fuzzy -#| msgid "Servers display options." msgid "For display Options" -msgstr "Opțiuni de afișare a serverelor." +msgstr "Pentru opțiuni de afișare" #: libraries/classes/Config/Descriptions.php:963 -#, fuzzy -#| msgid "Save all edited cells at once" msgid "Grid editing: save all edited cells at once" -msgstr "Salvează toate câmpurile editate simultan" +msgstr "Editare grilă: salvează simultan toate celulele editate" #: libraries/classes/Config/Descriptions.php:965 -#, fuzzy -#| msgid "Directory where exports can be saved on server" msgid "Directory where exports can be saved on server." -msgstr "Directoarele unde export-urile pot fi salvate pe server" +msgstr "Directorii unde exporturile pot fi salvate pe server." #: libraries/classes/Config/Descriptions.php:967 -#, fuzzy msgid "Save directory" -msgstr "Directorul de salvări" +msgstr "Salvează directorul" #: libraries/classes/Config/Descriptions.php:969 -#, fuzzy -#| msgid "Leave blank if not used" msgid "Leave blank if not used." -msgstr "Lăsați gol dacă nu este folosit" +msgstr "Lasă gol dacă nu folosești." # Ordinea de autorizare a gazdelor #: libraries/classes/Config/Descriptions.php:971 -#, fuzzy msgid "Host authorization order" -msgstr "Ordinea de autorizare a host-urilor" +msgstr "Ordine de autorizare gazde" #: libraries/classes/Config/Descriptions.php:973 -#, fuzzy -#| msgid "Leave blank for defaults" msgid "Leave blank for defaults." -msgstr "Lăsați gol pentru valorile implicite" +msgstr "Lasă gol pentru implicite." # Reguli de autorizare a gazdelor #: libraries/classes/Config/Descriptions.php:975 -#, fuzzy msgid "Host authorization rules" -msgstr "Reguli de autorizare a host-urilor" +msgstr "Reguli de autorizare gazde" #: libraries/classes/Config/Descriptions.php:977 -#, fuzzy msgid "Allow logins without a password" -msgstr "Permite logările fără parolă" +msgstr "Permite autentificări fără o parolă" #: libraries/classes/Config/Descriptions.php:979 -#, fuzzy msgid "Allow root login" -msgstr "Permite autentificarea ca „root”" +msgstr "Permite autentificare în rădăcină" #: libraries/classes/Config/Descriptions.php:981 -#, fuzzy -#| msgid "Session value" msgid "Session timezone" -msgstr "Valoare sesiune" +msgstr "Fus orar sesiune" #: libraries/classes/Config/Descriptions.php:984 msgid "" "Sets the effective timezone; possibly different than the one from your " "database server" msgstr "" +"Setează fusul orar real; probabil este diferit de cel al serverului bazei de " +"date" #: libraries/classes/Config/Descriptions.php:988 #, fuzzy @@ -6290,582 +5237,430 @@ msgid "HTTP Realm" msgstr "HTTP Realm" #: libraries/classes/Config/Descriptions.php:992 -#, fuzzy -#| msgid "Authentication method to use" msgid "Authentication method to use." -msgstr "Metoda de autentificare de utilizat" +msgstr "Metodă de autentificare de folosit." #: libraries/classes/Config/Descriptions.php:994 setup/frames/index.inc.php:142 -#, fuzzy msgid "Authentication type" -msgstr "Tipul autentificării" +msgstr "Tip de autentificare" #: libraries/classes/Config/Descriptions.php:997 -#, fuzzy -#| msgid "" -#| "Leave blank for no [a@https://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" -#| "a] support, suggested: [kbd]pma_bookmark[/kbd]" msgid "" "Leave blank for no [doc@bookmarks@]bookmark[/doc] support, suggested: " "[kbd]pma__bookmark[/kbd]" msgstr "" -"Lăsați necompletat dacă nu doriți suport pentru [a@https://wiki.phpmyadmin." -"net/pma/bookmark]bookmark-uri[/a], sugestie: [kbd]pma_bookmark[/kbd]" +"Lasă gol dacă nu vrei suport pentru [doc@bookmarks@]semne de carte[/doc], " +"sugestie: [kbd]pma_bookmark[/kbd]" #: libraries/classes/Config/Descriptions.php:1001 -#, fuzzy msgid "Bookmark table" -msgstr "Tabelul de bookmark-uri" +msgstr "Tabel semne de carte" #: libraries/classes/Config/Descriptions.php:1004 -#, fuzzy -#| msgid "" -#| "Leave blank for no column comments/mime types, suggested: " -#| "[kbd]pma_column_info[/kbd]" msgid "" "Leave blank for no column comments/mime types, suggested: " "[kbd]pma__column_info[/kbd]." msgstr "" -"Lăsați necompletat dacă nu doriți comentarii pentru coloane/mime types, " -"sugestie: [kbd]pma_column_info[/kbd]" +"Lasă gol pentru niciun comentariu/tip de mime în coloane, sugestie: " +"[kbd]pma_column_info[/kbd]." #: libraries/classes/Config/Descriptions.php:1008 -#, fuzzy msgid "Column information table" -msgstr "Tabelul cu informații despre coloane" +msgstr "Tabel informații coloane" #: libraries/classes/Config/Descriptions.php:1010 -#, fuzzy -#| msgid "Compress connection to MySQL server" msgid "Compress connection to MySQL server." -msgstr "Comprimă conexiunea la serverul MySQL" +msgstr "Comprimă conexiunea la serverul MySQL." #: libraries/classes/Config/Descriptions.php:1012 -#, fuzzy msgid "Compress connection" msgstr "Comprimă conexiunea" # Parola pentru utilizatorul de control #: libraries/classes/Config/Descriptions.php:1014 -#, fuzzy msgid "Control user password" -msgstr "Parola pentru control user" +msgstr "Controlează parola utilizatorului" #: libraries/classes/Config/Descriptions.php:1017 -#, fuzzy -#| msgid "" -#| "A special MySQL user configured with limited permissions, more " -#| "information available on [a@https://wiki.phpmyadmin.net/pma/" -#| "controluser]wiki[/a]" msgid "" "A special MySQL user configured with limited permissions, more information " "available on [doc@linked-tables]documentation[/doc]." msgstr "" -"Un user MySQL special configurat cu permisiuni limitate, mai multe " -"informații găsiți pe [a@https://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" +"Un utilizator MySQL special configurat cu permisiuni limitate, mai multe " +"informații sunt disponibile în [doc@linked-tables]documentație[/doc]." # Utilizator de control #: libraries/classes/Config/Descriptions.php:1021 -#, fuzzy msgid "Control user" -msgstr "Control user" +msgstr "Utilizator de control" # O altă gazdă care să deţină stocarea configurației; lăsați necompletat pentru a utiliza gazda deja definită #: libraries/classes/Config/Descriptions.php:1024 -#, fuzzy -#| msgid "" -#| "An alternate host to hold the configuration storage; leave blank to use " -#| "the already defined host" msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host." msgstr "" -"Un alt host care să dețină stocarea configurației; lăsați necompletat pentru " -"a utiliza host-ul deja definit" +"O altă gazdă care să dețină spațiul de stocarea al configurației; lasă gol " +"pentru a folosi gazda deja definită." # Gazdă de control #: libraries/classes/Config/Descriptions.php:1028 -#, fuzzy msgid "Control host" msgstr "Gazdă de control" # O altă gazdă care să deţină stocarea configurației; lăsați necompletat pentru a utiliza gazda deja definită #: libraries/classes/Config/Descriptions.php:1031 -#, fuzzy -#| msgid "" -#| "An alternate host to hold the configuration storage; leave blank to use " -#| "the already defined host" msgid "" "An alternate port to connect to the host that holds the configuration " "storage; leave blank to use the default port, or the already defined port, " "if the controlhost equals host." msgstr "" -"Un alt host care să deţină stocarea configurației; lăsați necompletat pentru " -"a utiliza host-ul deja definit" +"Un alt port pentru conectare la gazda care deține spațiul de stocarea al " +"configurației; lasă gol pentru a folosi portul implicit sau portul deja " +"definit, dacă gazda de control este identică cu gazda." # Gazdă de control #: libraries/classes/Config/Descriptions.php:1036 -#, fuzzy -#| msgid "Control host" msgid "Control port" -msgstr "Gazdă de control" +msgstr "Port de control" #: libraries/classes/Config/Descriptions.php:1038 -#, fuzzy -#| msgid "Hide databases matching regular expression (PCRE)" msgid "Hide databases matching regular expression (PCRE)." -msgstr "Ascunde bazele de date care respectă expresia regulată (PCRE)" +msgstr "Ascunde bazele de date care se potrivesc cu expresia obișnuită (PCRE)." #: libraries/classes/Config/Descriptions.php:1041 -#, fuzzy -#| msgid "" -#| "More information on [a@https://sourceforge.net/p/phpmyadmin/" -#| "bugs/2606/]PMA bug tracker[/a] and [a@https://bugs.mysql.com/19588]MySQL " -#| "Bugs[/a]" msgid "" "More information on [a@https://github.com/phpmyadmin/phpmyadmin/" "issues/8970]phpMyAdmin issue tracker[/a] and [a@https://bugs.mysql." "com/19588]MySQL Bugs[/a]" msgstr "" -"Mai multe informații pe [a@https://sourceforge.net/p/phpmyadmin/" -"bugs/2606/]PMA bug tracker[/a] și pe [a@https://bugs.mysql.com/19588]MySQL " -"Bugs[/a]" +"Mai multe informații la [a@https://github.com/phpmyadmin/phpmyadmin/issues/" +"8970]phpMyAdmin issue tracker[/a] și [a@https://bugs.mysql.com/19588]Erori " +"MySQL[/a]" #: libraries/classes/Config/Descriptions.php:1045 -#, fuzzy msgid "Disable use of INFORMATION_SCHEMA" msgstr "Dezactivează folosirea INFORMATION_SCHEMA" #: libraries/classes/Config/Descriptions.php:1047 -#, fuzzy msgid "Hide databases" -msgstr "Ascunde baze de date" +msgstr "Ascunde bazele de date" #: libraries/classes/Config/Descriptions.php:1050 -#, fuzzy -#| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]." msgstr "" -"Lăsați necompletat dacă nu doriți suport pentru istoricul interogărilor, " -"sugestie: [kbd]pma_history[/kbd]" +"Lasă gol dacă nu vrei suport pentru istoricul interogărilor SQL, sugestie: " +"[kbd]pma__history[/kbd]." #: libraries/classes/Config/Descriptions.php:1054 -#, fuzzy msgid "SQL query history table" -msgstr "Tabelă istoric interogări SQL" +msgstr "Tabel istoric interogări SQL" # Numele gazdei pe care rulează serverul MySQL #: libraries/classes/Config/Descriptions.php:1056 -#, fuzzy -#| msgid "Hostname where MySQL server is running" msgid "Hostname where MySQL server is running." -msgstr "Numele host-ului pe care rulează serverul MySQL" +msgstr "Numele gazdei unde rulează serverul MySQL." #: libraries/classes/Config/Descriptions.php:1058 -#, fuzzy msgid "Server hostname" -msgstr "Numele de gazdă al serverului" +msgstr "Nume gazdă server" #: libraries/classes/Config/Descriptions.php:1060 -#, fuzzy msgid "Logout URL" -msgstr "URL-ul pentru delogare" +msgstr "URL dezautentificare" #: libraries/classes/Config/Descriptions.php:1063 -#, fuzzy -#| msgid "" -#| "Limits number of table preferences which are stored in database, the " -#| "oldest records are automatically removed" msgid "" "Limits number of table preferences which are stored in database, the oldest " "records are automatically removed." msgstr "" -"Limitează numărul de preferințe ale tabelelor ce sunt stocate în baza de " -"date, cele mai vechi fiind automat înlăturate" +"Limitează numărul preferințelor din tabelele care sunt stocate în baza de " +"date, înregistrările cele mai vechi sunt înlăturate automat." #: libraries/classes/Config/Descriptions.php:1067 -#, fuzzy msgid "Maximal number of table preferences to store" -msgstr "Numărul maxim de preferințe ale tabelelor de stocat" +msgstr "Număr maxim de preferințe din tabel de stocat" #: libraries/classes/Config/Descriptions.php:1069 msgid "QBE saved searches table" -msgstr "" +msgstr "Tabel căutări salvate QBE" #: libraries/classes/Config/Descriptions.php:1072 -#, fuzzy msgid "" "Leave blank for no QBE saved searches support, suggested: " "[kbd]pma__savedsearches[/kbd]." msgstr "" -"Lăsați necompletat dacă nu doriți suport PDF schema, sugesti: " -"[kbd]pma_pdf_pages[/kbd]" +"Lasă gol dacă nu vrei suport pentru căutări salvate QBE, sugestie: " +"[kbd]ma__savedsearches[/kbd]." #: libraries/classes/Config/Descriptions.php:1076 -#, fuzzy -#| msgid "Export views as tables" msgid "Export templates table" -msgstr "Exportă vizualizările ca tabele" +msgstr "Tabel export șabloane" #: libraries/classes/Config/Descriptions.php:1079 -#, fuzzy msgid "" "Leave blank for no export template support, suggested: " "[kbd]pma__export_templates[/kbd]." msgstr "" -"Lăsați necompletat dacă nu doriți suport PDF schema, sugesti: " -"[kbd]pma_pdf_pages[/kbd]" +"Lasă gol dacă nu vrei suport pentru export șabloane, sugestie: " +"[kbd]pma__export_templates[/kbd]." #: libraries/classes/Config/Descriptions.php:1083 -#, fuzzy -#| msgid "Central columns" msgid "Central columns table" -msgstr "Coloane centrale" +msgstr "Tabel coloane centrale" #: libraries/classes/Config/Descriptions.php:1086 -#, fuzzy msgid "" "Leave blank for no central columns support, suggested: " "[kbd]pma__central_columns[/kbd]." msgstr "" -"Lăsați necompletat dacă nu doriți suport PDF schema, sugestie: " -"[kbd]pma_table_coords[/kbd]" +"Lasă gol dacă nu vrei suport pentru coloane centrale, sugestie: " +"[kbd]pma__central_columns[/kbd]." #: libraries/classes/Config/Descriptions.php:1091 -#, fuzzy -#| msgid "" -#| "You can use MySQL wildcard characters (% and _), escape them if you want " -#| "to use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " -#| "[kbd]'my_db'[/kbd]. Using this option you can sort database list, just " -#| "enter their names in order and use [kbd]*[/kbd] at the end to show the " -#| "rest in alphabetical order." msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " "[kbd]'my_db'[/kbd]." msgstr "" -"Puteți folosi caracterele wildcard MySQL (% și _), faceți escape dacă doriți " -"să folosiți instanțele lor literale, adică folosiți [kbd]'my\\_db'[/kbd] și " -"nu [kbd]'my_db'[/kbd]. Folosind această opțiune, puteți sorta lista bazelor " -"de date, doar introduceți numele lor în ordine și folosiți [kbd]*[/kbd] la " -"sfârșit pentru a afișa restul în ordine alfabetică." +"Poți folosi metacaractere MySQL (% și _), să le escapezi dacă vrei să " +"folosești instanțele lor literale, adică folosește [kbd]'my\\_db'[/kbd] și " +"nu [kbd]'my_db'[/kbd]." #: libraries/classes/Config/Descriptions.php:1096 -#, fuzzy msgid "Show only listed databases" -msgstr "Afișează doar bazele de date listate" +msgstr "Arată numai bazele de date listate" #: libraries/classes/Config/Descriptions.php:1098 #: libraries/classes/Config/Descriptions.php:1244 -#, fuzzy -#| msgid "Leave empty if not using config auth" msgid "Leave empty if not using config auth." -msgstr "Lăsați gol dacă nu utilizați „config auth”" +msgstr "Lasă gol dacă nu folosești config auth." #: libraries/classes/Config/Descriptions.php:1100 -#, fuzzy msgid "Password for config auth" -msgstr "Parola pentru „config auth”" +msgstr "Parolă pentru config auth" #: libraries/classes/Config/Descriptions.php:1102 -#, fuzzy msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]." msgstr "" -"Lăsați necompletat dacă nu doriți suport PDF schema, sugesti: " -"[kbd]pma_pdf_pages[/kbd]" +"Lasă gol dacă nu vrei suport pentru PDF schema, sugestie: " +"[kbd]pma__pdf_pages[/kbd]." #: libraries/classes/Config/Descriptions.php:1104 -#, fuzzy msgid "PDF schema: pages table" -msgstr "PDF schema: tabela de pagini" +msgstr "PDF schema: tabel pagini" #: libraries/classes/Config/Descriptions.php:1107 -#, fuzzy -#| msgid "" -#| "Database used for relations, bookmarks, and PDF features. See [a@https://" -#| "wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave " -#| "blank for no support. Suggested: [kbd]phpmyadmin[/kbd]" msgid "" "Database used for relations, bookmarks, and PDF features. See [doc@linked-" "tables]pmadb[/doc] for complete information. Leave blank for no support. " "Suggested: [kbd]phpmyadmin[/kbd]." msgstr "" -"Bază de date folosită pentru relații, bookmarks și proprietăți PDF. Vedeți " -"[a@https://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] pentru informații " -"complete. Lăsați necompletat dacă nu doriți suport. Sugestie: " -"[kbd]phpmyadmin[/kbd]" +"Bază de date folosită pentru funcționalitățile relații, semne de carte și " +"PDF. Vezi [doc@linked-tables]pmadb[/doc] pentru informații complete. Lasă " +"gol dacă nu vrei suport. Sugestie: [kbd]phpmyadmin[/kbd]." #: libraries/classes/Config/Descriptions.php:1112 #: templates/server/databases/create.twig:21 -#, fuzzy -#| msgid "database name" msgid "Database name" -msgstr "nume bază de date" +msgstr "Nume bază de date" #: libraries/classes/Config/Descriptions.php:1114 -#, fuzzy -#| msgid "Port on which MySQL server is listening, leave empty for default" msgid "Port on which MySQL server is listening, leave empty for default." -msgstr "Portul la care ascultă serverul MySQL, lăsați gol pentru implicit" +msgstr "Portul la care ascultă serverul MySQL, lasă gol pentru implicit." #: libraries/classes/Config/Descriptions.php:1116 -#, fuzzy msgid "Server port" -msgstr "Portul serverului" +msgstr "Port server" #: libraries/classes/Config/Descriptions.php:1119 -#, fuzzy -#| msgid "" -#| "Leave blank for no \"persistent\" recently used tables across sessions, " -#| "suggested: [kbd]pma_recent[/kbd]" msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]." msgstr "" -"Lăsați necompletat dacă nu doriți tabele - în mod \"persistent\" - recent " -"folosite peste sesiuni, sugestie: [kbd]pma_recent[/kbd]" +"Lasă gol pentru niciun tabel folosit recent „persistent” în sesiuni, " +"sugestie: [kbd]pma__recent[/kbd]." #: libraries/classes/Config/Descriptions.php:1123 -#, fuzzy msgid "Recently used table" msgstr "Tabel folosit recent" #: libraries/classes/Config/Descriptions.php:1126 -#, fuzzy -#| msgid "" -#| "Leave blank for no \"persistent\" recently used tables across sessions, " -#| "suggested: [kbd]pma_recent[/kbd]" msgid "" "Leave blank for no \"persistent\" favorite tables across sessions, " "suggested: [kbd]pma__favorite[/kbd]." msgstr "" -"Lăsați necompletat dacă nu doriți tabele - în mod \"persistent\" - recent " -"folosite peste sesiuni, sugestie: [kbd]pma_recent[/kbd]" +"Lasă gol pentru niciun tabel favorit „persistent” în sesiuni, sugestie: " +"[kbd]pma__favorite[/kbd]." #: libraries/classes/Config/Descriptions.php:1130 -#, fuzzy -#| msgid "Favorite tables" msgid "Favorites table" -msgstr "Tabele favorite" +msgstr "Tabel favorite" #: libraries/classes/Config/Descriptions.php:1133 -#, fuzzy -#| msgid "" -#| "Leave blank for no [a@https://wiki.phpmyadmin.net/pma/relation]relation-" -#| "links[/a] support, suggested: [kbd]pma_relation[/kbd]" msgid "" "Leave blank for no [doc@relations@]relation-links[/doc] support, suggested: " "[kbd]pma__relation[/kbd]." msgstr "" -"Lăsați necompletat dacă nu doriți suport [a@https://wiki.phpmyadmin.net/pma/" -"relation]relation-links[/a], sugestie: [kbd]pma_relation[/kbd]" +"Lasă gol dacă nu vrei suport pentru [doc@relations@]relation-links[/doc], " +"sugestie: [kbd]pma__relation[/kbd]." #: libraries/classes/Config/Descriptions.php:1138 -#, fuzzy msgid "Relation table" -msgstr "Tabel relațional" +msgstr "Tabel relații" #: libraries/classes/Config/Descriptions.php:1141 -#, fuzzy -#| msgid "" -#| "See [a@https://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -#| "types[/a] for an example" msgid "" "See [doc@authentication-modes]authentication types[/doc] for an example." msgstr "" -"Vezi [a@https://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -"types[/a] pentru un exemplu" +"Ca exemplu, vezi [doc@authentication-modes]tipuri de autentificare[/doc]." #: libraries/classes/Config/Descriptions.php:1145 -#, fuzzy msgid "Signon session name" -msgstr "Numele sesiunii signon" +msgstr "Nume sesiune signon" #: libraries/classes/Config/Descriptions.php:1147 -#, fuzzy msgid "Signon URL" -msgstr "ULR-ul signon" +msgstr "URL signon" #: libraries/classes/Config/Descriptions.php:1149 -#, fuzzy msgid "Socket on which MySQL server is listening, leave empty for default." -msgstr "Portul la care ascultă serverul MySQL, lăsați gol pentru implicit" +msgstr "Socket la care ascultă serverul MySQL, lasă gol pentru implicit." #: libraries/classes/Config/Descriptions.php:1151 -#, fuzzy msgid "Server socket" -msgstr "Soclul serverului" +msgstr "Socket server" #: libraries/classes/Config/Descriptions.php:1153 -#, fuzzy msgid "Enable SSL for connection to MySQL server." -msgstr "Comprimă conexiunea la serverul MySQL" +msgstr "Activează SSL pentru conectarea la serverul MySQL." #: libraries/classes/Config/Descriptions.php:1155 -#, fuzzy msgid "Use SSL" -msgstr "Utilizează SSL" +msgstr "Folosește SSL" #: libraries/classes/Config/Descriptions.php:1157 -#, fuzzy msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]." msgstr "" -"Lăsați necompletat dacă nu doriți suport PDF schema, sugestie: " -"[kbd]pma_table_coords[/kbd]" +"Lasă gol dacă nu vrei suport pentru schema PDF, sugestie: " +"[kbd]pma__table_coords[/kbd]." #: libraries/classes/Config/Descriptions.php:1159 -#, fuzzy -#| msgid "PDF schema: table coordinates" msgid "Designer and PDF schema: table coordinates" -msgstr "PDF schema: coordonatele tabelului" +msgstr "Designer și schemă PDF: coordonate tabel" #: libraries/classes/Config/Descriptions.php:1162 -#, fuzzy -#| msgid "" -#| "Table to describe the display columns, leave blank for no support; " -#| "suggested: [kbd]pma_table_info[/kbd]" msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]." msgstr "" -"Tabelul care descrie coloanele de afișare, lăsați necompletat dacă nu doriți " -"suport; sugestie: [kbd]pma_table_info[/kbd]" +"Tabel care descrie afișarea coloanelor, lasă gol dacă nu vrei suport; " +"sugestie: [kbd]pma__table_info[/kbd]." #: libraries/classes/Config/Descriptions.php:1166 -#, fuzzy -#| msgid "Displaying Column Comments" msgid "Display columns table" -msgstr "Afișează tabelul de coloane" +msgstr "Tabel afișare coloane" #: libraries/classes/Config/Descriptions.php:1169 -#, fuzzy -#| msgid "" -#| "Leave blank for no \"persistent\" tables'UI preferences across sessions, " -#| "suggested: [kbd]pma_table_uiprefs[/kbd]" msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]." msgstr "" -"Lăsați necompletat dacă nu doriți suport \"persistent\" pentru preferințele " -"Interfeței cu Utilizatorul ale tabelului peste sesiuni, sugestie: " -"[kbd]pma_table_uiprefs[/kbd]" +"Lasă gol pentru nicio preferință UI „persistentă„ pentru tabele în sesiuni, " +"sugestie: [kbd]pma__table_uiprefs[/kbd]." #: libraries/classes/Config/Descriptions.php:1173 -#, fuzzy msgid "UI preferences table" -msgstr "Preferințele Interfeței cu Utilizatorul ale tabelului" +msgstr "Tabel preferințe UI" #: libraries/classes/Config/Descriptions.php:1176 -#, fuzzy msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -"Dacă o declarație DROP DATABASE IF EXISTS va fi adăugată ca prima linie la " -"jurnal când se creează o bază de date." +"Dacă există o declarație ELIMINĂ BAZA DE DATE ea va fi adăugată ca prima " +"linie în jurnal la crearea unei baze de date." #: libraries/classes/Config/Descriptions.php:1180 -#, fuzzy msgid "Add DROP DATABASE" -msgstr "Adaugă DROP DATABASE" +msgstr "Adaugă ELIMINĂ BAZA DE DATE" #: libraries/classes/Config/Descriptions.php:1183 -#, fuzzy msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -"Dacă o declarație DROP DATABASE IF EXISTS va fi adăugată ca prima linie la " -"jurnal când se creează un tabel." +"Dacă există o declarație ELIMINĂ TABELUL ea va fi adăugată ca prima linie în " +"jurnal la crearea unei baze de date." #: libraries/classes/Config/Descriptions.php:1187 #: libraries/classes/MultSubmits.php:364 -#, fuzzy msgid "Add DROP TABLE" -msgstr "Adaugă DROP TABLE" +msgstr "Adaugă ELIMINĂ TABELUL" #: libraries/classes/Config/Descriptions.php:1190 -#, fuzzy msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -"Dacă o declarație DROP VIEW IF EXISTS va fi adăugată ca prima linie la " -"jurnal când se creează un view." +"Dacă există o declarație ELIMINĂ VIZUALIZAREA ea va fi adăugată ca prima " +"linie în jurnal la crearea unei vizualizări." #: libraries/classes/Config/Descriptions.php:1194 -#, fuzzy msgid "Add DROP VIEW" -msgstr "Adaugă DROP VIEW" +msgstr "Adaugă ELIMINĂ VIZUALIZAREA" #: libraries/classes/Config/Descriptions.php:1196 -#, fuzzy msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -"Definește lista de declarații pe care auto-crearea le folosește la " +"Definește lista de declarații pe care crearea automată o folosește pentru " "versiunile noi." #: libraries/classes/Config/Descriptions.php:1198 -#, fuzzy msgid "Statements to track" msgstr "Declarații de urmărit" #: libraries/classes/Config/Descriptions.php:1201 -#, fuzzy -#| msgid "" -#| "Leave blank for no SQL query tracking support, suggested: " -#| "[kbd]pma_tracking[/kbd]" msgid "" "Leave blank for no SQL query tracking support, suggested: " "[kbd]pma__tracking[/kbd]." msgstr "" -"Lăsați necompletat dacă nu doriți suport pentru urmărirea interogărilor SQL, " -"sugestie: [kbd]pma_tracking[/kbd]" +"Lasă gol dacă nu vrei suport pentru urmărirea interogărilor SQL, sugestie: " +"[kbd]pma__tracking[/kbd]." # Tabelul de urmărire interogări SQL #: libraries/classes/Config/Descriptions.php:1205 -#, fuzzy msgid "SQL query tracking table" -msgstr "Tabelul de tracking interogări SQL" +msgstr "Tabel urmărire interogări SQL" #: libraries/classes/Config/Descriptions.php:1208 -#, fuzzy msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -"Dacă mecanismul de urmărire creează versiuni pentru tabele și vizualizări în " -"mod automat." +"Dacă mecanismul de urmărire creează automat versiuni pentru tabele și " +"vizualizări." #: libraries/classes/Config/Descriptions.php:1212 -#, fuzzy -#| msgid "Automatic recovery mode" msgid "Automatically create versions" -msgstr "Regim de recuperare automată" +msgstr "Creează automat versiuni" #: libraries/classes/Config/Descriptions.php:1215 -#, fuzzy -#| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma_userconfig[/kbd]" msgid "" "Leave blank for no user preferences storage in database, suggested: " "[kbd]pma__userconfig[/kbd]." msgstr "" -"Lăsați necompletat dacă nu doriți stocarea preferințelor utilizatorilor în " -"baza de date, sugestie: [kbd]pma_userconfig[/kbd]" +"Lasă gol pentru nicio stocare a preferințelor utilizatorilor în baza de " +"date, sugestie: [kbd]pma__userconfig[/kbd]." #: libraries/classes/Config/Descriptions.php:1219 -#, fuzzy msgid "User preferences storage table" -msgstr "Tabelul de stocare a preferințelor utilizatorului" +msgstr "Tabel stocare preferințe utilizatori" #: libraries/classes/Config/Descriptions.php:1222 msgid "" @@ -6873,12 +5668,14 @@ msgid "" "configurable menus feature; leaving either one of them blank will disable " "this feature, suggested: [kbd]pma__users[/kbd]." msgstr "" +"Atât acest tabel cât și tabelul grupurilor de utilizatori sunt necesare " +"pentru a activa funcționalitatea meniuri configurabile; lăsarea chiar numai " +"a unui tabel gol va dezactiva această funcționalitate, sugestie: " +"[kbd]pma__users[/kbd]." #: libraries/classes/Config/Descriptions.php:1227 -#, fuzzy -#| msgid "Use Tables" msgid "Users table" -msgstr "Utilizare tabele" +msgstr "Tabel utilizatori" #: libraries/classes/Config/Descriptions.php:1230 msgid "" @@ -6886,261 +5683,211 @@ msgid "" "menus feature; leaving either one of them blank will disable this feature, " "suggested: [kbd]pma__usergroups[/kbd]." msgstr "" +"Atât acest tabel cât și tabelul utilizatorilor sunt necesare pentru a activa " +"funcționalitatea meniuri configurabile; lăsarea chiar numai a unui tabel gol " +"va dezactiva această funcționalitate, sugestie: [kbd]pma__usergroups[/kbd]." #: libraries/classes/Config/Descriptions.php:1235 -#, fuzzy -#| msgid "Use Host Table" msgid "User groups table" -msgstr "Utilizare tabel gazde" +msgstr "Tabel grupuri de utilizatori" #: libraries/classes/Config/Descriptions.php:1238 -#, fuzzy -#| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: " -#| "[kbd]pma_userconfig[/kbd]" msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." msgstr "" -"Lăsați necompletat dacă nu doriți stocarea preferințelor utilizatorilor în " -"baza de date, sugestie: [kbd]pma_userconfig[/kbd]" +"Lasă gol pentru a dezactiva funcționalitatea de a ascunde sau arăta " +"elementele de navigare, sugestie: [kbd]pma__navigationhiding[/kbd]." #: libraries/classes/Config/Descriptions.php:1242 msgid "Hidden navigation items table" -msgstr "" +msgstr "Tabel elemente de navigare ascunse" #: libraries/classes/Config/Descriptions.php:1246 -#, fuzzy msgid "User for config auth" -msgstr "Utilizator pentru „config auth”" +msgstr "Utilizator pentru config auth" #: libraries/classes/Config/Descriptions.php:1249 -#, fuzzy msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -"O descriere user-friendly a acestui server. Lăsați necompletat pentru a " -"afișa numele de gazdă în loc." +"O descriere prietenoasă a acestui server. Lasă gol pentru a afișa numele " +"gazdei în acest loc." # Numele "pe larg" al acestui server #: libraries/classes/Config/Descriptions.php:1253 -#, fuzzy msgid "Verbose name of this server" -msgstr "Numele \"verbose\" al acestui server" +msgstr "Numele întreg al acestui server" #: libraries/classes/Config/Descriptions.php:1255 -#, fuzzy -#| msgid "Whether a user should be displayed a \"show all (rows)\" button" msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "" -"Dacă unui utilizator să i se afișeze un buton \"arata-le pe toate(randurile\"" +"Dacă un utilizator ar vrea să fie afișat un buton „arată toate (rândurile)”." #: libraries/classes/Config/Descriptions.php:1257 -#, fuzzy msgid "Allow to display all the rows" msgstr "Permite afișarea tuturor rândurilor" #: libraries/classes/Config/Descriptions.php:1260 -#, fuzzy -#| msgid "" -#| "Please note that enabling this has no effect with [kbd]config[/kbd] " -#| "authentication mode because the password is hard coded in the " -#| "configuration file; this does not limit the ability to execute the same " -#| "command directly" msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly." msgstr "" -"Vă rugăm să rețineți faptul această permisiune nu are niciun efect în modul " -"de autentificare [kbd]config[/kbd], deoarece parola hardcodată în fișierul " -"de configurare; nu se limitează capacitatea de a executa aceeași comandă " -"direct" +"Te rog reține că această activare nu are niciun efect în modul autentificare " +"[kbd]config[/kbd], deoarece parola este setată în fișierul de configurare; " +"acest lucru nu limitează capacitatea de a executa aceeași comandă direct." #: libraries/classes/Config/Descriptions.php:1265 -#, fuzzy msgid "Show password change form" -msgstr "Arată formularul de schimbare a parolei" +msgstr "Arată formular schimbare parolă" #: libraries/classes/Config/Descriptions.php:1267 -#, fuzzy msgid "Show create database form" -msgstr "Arată formularul de creare bază de date" +msgstr "Arată formular creare bază de date" #: libraries/classes/Config/Descriptions.php:1269 msgid "Show or hide a column displaying the comments for all tables." msgstr "" +"Arată sau ascunde o coloană care afișează comentariile pentru toate tabelele." #: libraries/classes/Config/Descriptions.php:1271 -#, fuzzy -#| msgid "Table comments" msgid "Show table comments" -msgstr "Comentarii tabel" +msgstr "Arată comentarii tabele" #: libraries/classes/Config/Descriptions.php:1273 msgid "Show or hide a column displaying the Creation timestamp for all tables." msgstr "" +"Arată sau ascunde o coloană care afișează datarea creării pentru toate " +"tabelele." #: libraries/classes/Config/Descriptions.php:1275 -#, fuzzy -#| msgid "Show PHP information" msgid "Show creation timestamp" -msgstr "Arată informația PHP" +msgstr "Arată datare creare" #: libraries/classes/Config/Descriptions.php:1277 msgid "" "Show or hide a column displaying the Last update timestamp for all tables." msgstr "" +"Arată sau ascunde o coloană care afișează datarea ultimei actualizări pentru " +"toate tabelele." #: libraries/classes/Config/Descriptions.php:1279 -#, fuzzy msgid "Show last update timestamp" -msgstr "Afișează stare sclav" +msgstr "Arată datare ultima actualizare" #: libraries/classes/Config/Descriptions.php:1281 msgid "" "Show or hide a column displaying the Last check timestamp for all tables." msgstr "" +"Arată sau ascunde o coloană care afișează datarea ultimei verificări pentru " +"toate tabelele." #: libraries/classes/Config/Descriptions.php:1283 -#, fuzzy msgid "Show last check timestamp" -msgstr "Afișează stare sclav" +msgstr "Arată datare ultima verificare" #: libraries/classes/Config/Descriptions.php:1285 msgid "Show or hide a column displaying the charset for all tables." msgstr "" +"Arată sau ascunde o coloană care afișează setul de caractere pentru toate " +"tabelele." #: libraries/classes/Config/Descriptions.php:1287 -#, fuzzy -#| msgid "Table comments" msgid "Show table charset" -msgstr "Comentarii tabel" +msgstr "Arată set de caractere tabel" #: libraries/classes/Config/Descriptions.php:1290 -#, fuzzy -#| msgid "" -#| "Defines whether or not type fields should be initially displayed in edit/" -#| "insert mode" msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode." msgstr "" -"Stabilește dacă să se afișeze inițial sau nu câmpurile de tip, în modul de " -"editare/inserare" +"Definește dacă trebuie, sau nu, să fie afișate inițial tipurile de câmp în " +"modul editare/inserare." #: libraries/classes/Config/Descriptions.php:1294 -#, fuzzy -#| msgid "Show open tables" msgid "Show field types" -msgstr "Afișează tipurile câmpurilor" +msgstr "Arată tipuri de câmp" #: libraries/classes/Config/Descriptions.php:1296 -#, fuzzy -#| msgid "Display the function fields in edit/insert mode" msgid "Display the function fields in edit/insert mode." -msgstr "Afișează câmpurile de funcții în modul de editare/inserare" +msgstr "Afișează câmpurile de funcții în modul editare/inserare." #: libraries/classes/Config/Descriptions.php:1298 -#, fuzzy msgid "Show function fields" -msgstr "Afișează câmpurile de funcții" +msgstr "Arată câmpuri funcții" #: libraries/classes/Config/Descriptions.php:1300 -#, fuzzy -#| msgid "Whether to show hint or not" msgid "Whether to show hint or not." -msgstr "Dacă să se afișeze indiciul sau nu" +msgstr "Dacă să fie arătată o sugestie sau nu." #: libraries/classes/Config/Descriptions.php:1302 -#, fuzzy msgid "Show hint" -msgstr "Arată indiciul" +msgstr "Arată sugestie" #: libraries/classes/Config/Descriptions.php:1305 -#, fuzzy -#| msgid "" -#| "Shows link to [a@https://secure.php.net/manual/function.phpinfo." -#| "php]phpinfo()[/a] output" msgid "" "Shows link to [a@https://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." msgstr "" -"Afișează link-ul către output-ul [a@https://secure.php.net/manual/function." -"phpinfo.php]phpinfo()[/a]" +"Arată o legătură la ieșirea [a@https://php.net/manual/" +"function.phpinfo.php]phpinfo()[/a]." #: libraries/classes/Config/Descriptions.php:1309 -#, fuzzy msgid "Show phpinfo() link" -msgstr "Afișează link-ul phpinfo()" +msgstr "Arată legătura phpinfo()" #: libraries/classes/Config/Descriptions.php:1311 -#, fuzzy msgid "Show detailed MySQL server information" -msgstr "Afișează informații detaliate despre serverul MySQL" +msgstr "Arată informații detaliate despre serverul MySQL" #: libraries/classes/Config/Descriptions.php:1313 -#, fuzzy -#| msgid "" -#| "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "" -"Definește dacă interogările SQL generate de phpMyAdmin ar trebui să fie " -"afișate" +"Definește dacă ar trebui să fie afișate interogările SQL generate de " +"phpMyAdmin." #: libraries/classes/Config/Descriptions.php:1315 -#, fuzzy msgid "Show SQL queries" -msgstr "Afișează interogările SQL" +msgstr "Arată interogări SQL" #: libraries/classes/Config/Descriptions.php:1317 -#, fuzzy -#| msgid "" -#| "Defines whether the query box should stay on-screen after its submission" msgid "" "Defines whether the query box should stay on-screen after its submission." msgstr "" -"Definește dacă după submit, casuța de interogare ar trebui să rămână pe ecran" +"Definește dacă caseta de interogare ar trebui să rămână pe ecran după " +"trimiterea ei." #: libraries/classes/Config/Descriptions.php:1319 #: libraries/classes/SqlQueryForm.php:356 -#, fuzzy msgid "Retain query box" -msgstr "Reține căsuța de interogare" +msgstr "Reține caseta de interogare" #: libraries/classes/Config/Descriptions.php:1321 -#, fuzzy -#| msgid "Allow to display database and table statistics (eg. space usage)" msgid "Allow to display database and table statistics (eg. space usage)." msgstr "" -"Permite afișarea statisticilor pentru baze de date și tabeluri (utilizarea " -"spațiului de exemplu)" +"Permite afișarea statisticilor pentru baze de date și tabele (de exemplu, " +"utilizare spațiu)." #: libraries/classes/Config/Descriptions.php:1323 -#, fuzzy msgid "Show statistics" -msgstr "Afișează statistici" +msgstr "Arată statistici" #: libraries/classes/Config/Descriptions.php:1325 -#, fuzzy -#| msgid "" -#| "Mark used tables and make it possible to show databases with locked tables" msgid "" "Mark used tables and make it possible to show databases with locked tables." msgstr "" -"Marchează tabelele folosite și fă posibilă afișarea bazelor de date cu " -"tabele zăvorâte" +"Marchează tabelele folosite și face posibilă afișarea bazelor de date cu " +"tabele blocate." #: libraries/classes/Config/Descriptions.php:1327 -#, fuzzy msgid "Skip locked tables" -msgstr "Sari peste tabelele zăvorâte" +msgstr "Omite tabele blocate" #: libraries/classes/Config/Descriptions.php:1331 #: libraries/classes/Util.php:1041 -#, fuzzy msgid "Explain SQL" msgstr "Explică SQL" @@ -7149,88 +5896,67 @@ msgstr "Explică SQL" #: libraries/classes/Server/Status/Processes.php:233 #: libraries/classes/Server/Status/Variables.php:50 #: libraries/classes/Util.php:1122 templates/console/display.twig:99 -#, fuzzy msgid "Refresh" -msgstr "Reîncarcă" +msgstr "Reîmprospătează" #: libraries/classes/Config/Descriptions.php:1335 #: libraries/classes/Util.php:1107 -#, fuzzy -#| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Creează cod PHP" #: libraries/classes/Config/Descriptions.php:1338 -#, fuzzy msgid "" "Disable the default warning that is displayed on the main page if Suhosin is " "detected." msgstr "" -"Un avertisment este afișat pe prima pagina dacă Suhosin este descoperit" +"Dezactivează avertizarea implicită care este afișată pe pagina principală " +"dacă este detectat Suhosin." #: libraries/classes/Config/Descriptions.php:1342 -#, fuzzy msgid "Suhosin warning" msgstr "Avertizare Suhosin" #: libraries/classes/Config/Descriptions.php:1345 -#, fuzzy msgid "" "Disable the default warning that is displayed on the main page if the value " "of the PHP setting session.gc_maxlifetime is less than the value of " "`LoginCookieValidity`." msgstr "" -"Dezactivează avertismentul implicit care este afişat pe pagina cu detalii de " -"structură ale bazei de date, dacă oricare dintre tabelele necesare pentru " -"stocarea configurării phpMyAdmin nu a putut fi găsită" +"Dezactivează avertizarea implicită care este afișată pe pagina principală " +"dacă valoarea setării PHP session.gc_maxlifetime este mai mică decât " +"valoarea „LoginCookieValidity”." #: libraries/classes/Config/Descriptions.php:1350 -#, fuzzy -#| msgid "Login cookie validity" msgid "Login cookie validity warning" -msgstr "Validitatea cookie-ului de login" +msgstr "Avertizare validitate cookie-uri autentificare" #: libraries/classes/Config/Descriptions.php:1353 -#, fuzzy -#| msgid "" -#| "Textarea size (columns) in edit mode, this value will be emphasized for " -#| "SQL query textareas (*2) and for query window (*1.25)" msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2)." msgstr "" -"Mărimea textarea-ului (în coloane) în modul de editare, această valoare va " -"fi marită pentru textarea-urile de interogări SQL (*2) și pentru ferestrele " -"de interogări (*1.25)" +"Dimensiunea zonei text (coloane) în modul editare, această valoare va fi " +"mărită pentru zonele text ale interogărilor SQL (*2)." #: libraries/classes/Config/Descriptions.php:1357 -#, fuzzy msgid "Textarea columns" -msgstr "Coloane textarea" +msgstr "Coloane zonă text" #: libraries/classes/Config/Descriptions.php:1360 -#, fuzzy -#| msgid "" -#| "Textarea size (rows) in edit mode, this value will be emphasized for SQL " -#| "query textareas (*2) and for query window (*1.25)" msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2)." msgstr "" -"Mărimea textarea-ului (în rânduri) în modul de editare, această valoare va " -"fi marită pentru textarea-urile de interogări SQL (*2) și pentru ferestrele " -"de interogări (*1.25)" +"Dimensiunea zonei text (rânduri) în modul editare, această valoare va fi " +"mărită pentru zonele text ale interogărilor SQL (*2)." #: libraries/classes/Config/Descriptions.php:1364 -#, fuzzy msgid "Textarea rows" -msgstr "Rânduri textarea" +msgstr "Rânduri zonă text" #: libraries/classes/Config/Descriptions.php:1366 -#, fuzzy -#| msgid "Title of browser window when a database is selected" msgid "Title of browser window when a database is selected." -msgstr "Titlul ferestrei browser-ului când este selectată o bază de date" +msgstr "Titlul ferestrei navigatorului când este selectată o bază de date." #: libraries/classes/Config/Descriptions.php:1368 #: libraries/classes/Menu.php:233 libraries/classes/MultSubmits.php:351 @@ -7249,38 +5975,29 @@ msgstr "Titlul ferestrei browser-ului când este selectată o bază de date" #: templates/console/bookmark_content.twig:7 #: templates/table/relation/common_form.twig:32 #: templates/server/databases/table_header.twig:8 -#, fuzzy msgid "Database" msgstr "Bază de date" #: libraries/classes/Config/Descriptions.php:1370 -#, fuzzy -#| msgid "Title of browser window when nothing is selected" msgid "Title of browser window when nothing is selected." -msgstr "TItlul ferestrei browser-ului când nu este selectat nimic" +msgstr "Titlul ferestrei navigatorului când nu este selectat nimic." #: libraries/classes/Config/Descriptions.php:1372 -#, fuzzy msgid "Default title" msgstr "Titlu implicit" #: libraries/classes/Config/Descriptions.php:1374 -#, fuzzy -#| msgid "Title of browser window when a server is selected" msgid "Title of browser window when a server is selected." -msgstr "Titlul ferestrei browser-ului când este selectat un server" +msgstr "Titlul ferestrei navigatorului când este selectat un server." #: libraries/classes/Config/Descriptions.php:1376 #: libraries/classes/Menu.php:214 libraries/classes/Server/Status/Data.php:425 -#, fuzzy msgid "Server" msgstr "Server" #: libraries/classes/Config/Descriptions.php:1378 -#, fuzzy -#| msgid "Title of browser window when a table is selected" msgid "Title of browser window when a table is selected." -msgstr "Titlul ferestrei browser-ului când este selectat un tabel" +msgstr "Titlul ferestrei navigatorului când este selectat un tabel." #: libraries/classes/Config/Descriptions.php:1380 #: libraries/classes/Menu.php:271 @@ -7298,7 +6015,6 @@ msgstr "Titlul ferestrei browser-ului când este selectat un tabel" #: templates/table/relation/internal_relational_row.twig:17 #: templates/database/tracking/untracked_tables.twig:9 #: templates/table/relation/common_form.twig:33 -#, fuzzy msgid "Table" msgstr "Tabel" @@ -7321,62 +6037,47 @@ msgstr "" "[kbd] 1.2.3.4: HTTP_X_FORWARDED_FOR [/kbd]" #: libraries/classes/Config/Descriptions.php:1389 -#, fuzzy msgid "List of trusted proxies for IP allow/deny" -msgstr "Lista proxy-urilor de încredere pentru IP allow/deny" +msgstr "Lista proxy-urilor de încredere pentru permite/refuză IP" #: libraries/classes/Config/Descriptions.php:1391 -#, fuzzy -#| msgid "Directory on server where you can upload files for import" msgid "Directory on server where you can upload files for import." -msgstr "Directorul de pe server unde puteți uploada fișiere pentru importare" +msgstr "Director pe server unde poți încărca fișierele pentru import." #: libraries/classes/Config/Descriptions.php:1393 -#, fuzzy msgid "Upload directory" -msgstr "Directorul de bază pentru date" +msgstr "Director încărcări" #: libraries/classes/Config/Descriptions.php:1395 -#, fuzzy -#| msgid "Allow for searching inside the entire database" msgid "Allow for searching inside the entire database." -msgstr "Permiteți căutarea în întreaga bază de date" +msgstr "Permite căutarea în întreaga bază de date." #: libraries/classes/Config/Descriptions.php:1397 -#, fuzzy msgid "Use database search" -msgstr "Folosiți căutarea în baza de date" +msgstr "Folosește căutarea în baza de date" #: libraries/classes/Config/Descriptions.php:1400 -#, fuzzy -#| msgid "" -#| "When disabled, users cannot set any of the options below, regardless of " -#| "the checkbox on the right" msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right." msgstr "" -"Când este dezactivat, userii nu pot seta niciuna din opțiunile de mai jos, " -"indiferent de checkbox-ul din dreapta" +"Când este dezactivată, utilizatorii nu pot seta niciuna din opțiunile de mai " +"jos, indiferent de bifa din dreapta." #: libraries/classes/Config/Descriptions.php:1404 -#, fuzzy msgid "Enable the Developer tab in settings" -msgstr "Activați tab-ul Developer în setări" +msgstr "Activează fila Dezvoltator în setări" #: libraries/classes/Config/Descriptions.php:1406 -#, fuzzy -#| msgid "Enables check for latest version on main phpMyAdmin page" msgid "Enables check for latest version on main phpMyAdmin page." msgstr "" -"Activați verificarea pentru ultima versiune pe pagina principală phpMyAdmin" +"Activează verificarea pentru ultima versiune pe pagina principală phpMyAdmin." #: libraries/classes/Config/Descriptions.php:1408 setup/lib/Index.php:122 #: setup/lib/Index.php:145 setup/lib/Index.php:158 setup/lib/Index.php:170 #: setup/lib/Index.php:178 setup/lib/Index.php:185 -#, fuzzy msgid "Version check" -msgstr "Verificarea versiunii" +msgstr "Verificare versiune" #: libraries/classes/Config/Descriptions.php:1411 msgid "" @@ -7388,7 +6089,7 @@ msgstr "" #: libraries/classes/Config/Descriptions.php:1417 msgid "Proxy url" -msgstr "" +msgstr "URL proxy" #: libraries/classes/Config/Descriptions.php:1420 msgid "" @@ -7396,312 +6097,259 @@ msgid "" "authentication is performed. If a username is supplied, Basic Authentication " "will be performed. No other types of authentication are currently supported." msgstr "" +"Numele de utilizator pentru autentificarea cu proxy. În mod implicit, nu se " +"face nicio autentificare. Dacă este furnizat un nume de utilizator, se va " +"face autentificarea de bază. În prezent, nu este acceptat niciun alt tip de " +"autentificare." #: libraries/classes/Config/Descriptions.php:1426 -#, fuzzy msgid "Proxy username" -msgstr "Nume utilizator:" +msgstr "Nume utilizator proxy" #: libraries/classes/Config/Descriptions.php:1428 msgid "The password for authenticating with the proxy." -msgstr "" +msgstr "Parola pentru autentificarea cu proxy." #: libraries/classes/Config/Descriptions.php:1430 -#, fuzzy -#| msgid "Password" msgid "Proxy password" -msgstr "Parola" +msgstr "Parolă proxy" #: libraries/classes/Config/Descriptions.php:1433 -#, fuzzy -#| msgid "" -#| "Enable [a@https://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " -#| "import and export operations" msgid "Enable ZIP compression for import and export operations." -msgstr "" -"Permite compresia [a@https://en.wikipedia.org/wiki/Bzip2]bzip2[/a] pentru " -"operațiile de import și export" +msgstr "Activează compresia ZIP pentru operațiile de import și export." #: libraries/classes/Config/Descriptions.php:1435 -#, fuzzy msgid "ZIP" msgstr "ZIP" #: libraries/classes/Config/Descriptions.php:1437 msgid "Enter your public key for your domain reCaptcha service." -msgstr "" +msgstr "Introdu cheia publică pentru serviciul tău reCaptcha." #: libraries/classes/Config/Descriptions.php:1439 msgid "Public key for reCaptcha" -msgstr "" +msgstr "Cheie publică pentru reCaptcha" #: libraries/classes/Config/Descriptions.php:1441 msgid "Enter your private key for your domain reCaptcha service." -msgstr "" +msgstr "Introdu cheia ta privată pentru serviciul tău reCaptcha." #: libraries/classes/Config/Descriptions.php:1443 msgid "Private key for reCaptcha" -msgstr "" +msgstr "Cheie privată pentru reCaptcha" #: libraries/classes/Config/Descriptions.php:1446 -#, fuzzy -#| msgid "Ask before sending error reports" msgid "Choose the default action when sending error reports." -msgstr "Întreabă înainte de a trimite rapoarte de eroare" +msgstr "Alege acțiunea implicită când trimiți rapoarte de erori." #: libraries/classes/Config/Descriptions.php:1448 -#, fuzzy -#| msgid "Server port" msgid "Send error reports" -msgstr "Portul serverului" +msgstr "Trimite rapoarte de erori" #: libraries/classes/Config/Descriptions.php:1452 msgid "" "Queries are executed by pressing Enter (instead of Ctrl+Enter). New lines " "will be inserted with Shift+Enter." msgstr "" +"Interogările sunt executate apăsând Enter (în loc de Ctrl+Enter). Vor fi " +"inserate linii noi cu Shift+Enter." #: libraries/classes/Config/Descriptions.php:1456 -#, fuzzy msgid "Enter executes queries in console" -msgstr "Comanda SQL" +msgstr "Introdu execută interogări în consola" #: libraries/classes/Config/Descriptions.php:1460 msgid "" "Enable Zero Configuration mode which lets you setup phpMyAdmin configuration " "storage tables automatically." msgstr "" +"Activează modul Configurare zero care îți permite să inițializezi automat " +"tabelele de stocare a configurației phpMyAdmin." #: libraries/classes/Config/Descriptions.php:1464 -#, fuzzy -#| msgid "Server configuration" msgid "Enable Zero Configuration mode" -msgstr "Configurarea serverului" +msgstr "Activează modul Configurare zero" #: libraries/classes/Config/Descriptions.php:1466 #: templates/console/display.twig:153 -#, fuzzy msgid "Show query history at start" -msgstr "Arată istoricul interogărilor la pornire" +msgstr "Arată istoricul interogărilor la început" #: libraries/classes/Config/Descriptions.php:1468 #: templates/console/display.twig:149 -#, fuzzy msgid "Always expand query messages" msgstr "Extinde întotdeauna mesajele de interogare" #: libraries/classes/Config/Descriptions.php:1470 #: templates/console/display.twig:157 -#, fuzzy -#| msgid "Show current browsing query" msgid "Show current browsing query" -msgstr "Arată interogarea curentă de navigare" +msgstr "Arată interogarea răsfoită acum" #: libraries/classes/Config/Descriptions.php:1472 -#, fuzzy msgid "Execute queries on Enter and insert new line with Shift + Enter" msgstr "" -"Execută interogări pe Enter şi inserează o linie nouă cu Shift + Enter. " -"Pentru a face asta permanent, vezi setări." +"Execută interogări apăsând pe Enter și inserează o linie nouă cu Shift + " +"Enter" #: libraries/classes/Config/Descriptions.php:1474 #: templates/console/display.twig:168 -#, fuzzy -#| msgid "Switch to copied table" msgid "Switch to dark theme" -msgstr "Schimbă la tabela copiată" +msgstr "Comută la tema întunecată" #: libraries/classes/Config/Descriptions.php:1476 -#, fuzzy -#| msgid "Console" msgid "Console height" -msgstr "Consolă" +msgstr "Înălțime consolă" #: libraries/classes/Config/Descriptions.php:1478 -#, fuzzy -#| msgid "Console" msgid "Console mode" -msgstr "Consolă" +msgstr "Mod consolă" #: libraries/classes/Config/Descriptions.php:1480 #: templates/console/display.twig:64 -#, fuzzy -#| msgid "SQL queries" msgid "Group queries" -msgstr "Interogări SQL" +msgstr "Grupează interogările" #: libraries/classes/Config/Descriptions.php:1482 libraries/classes/Sql.php:254 msgid "Order" -msgstr "" +msgstr "Ordine" #: libraries/classes/Config/Descriptions.php:1484 -#, fuzzy -#| msgid "Order by:" msgid "Order by" -msgstr "Ordonează după:" +msgstr "Ordonează după" #: libraries/classes/Config/FormDisplay.php:99 #: libraries/classes/Config/Validator.php:524 -#, fuzzy msgid "Not a positive number!" msgstr "Nu este un număr pozitiv!" #: libraries/classes/Config/FormDisplay.php:100 #: libraries/classes/Config/Validator.php:546 -#, fuzzy msgid "Not a non-negative number!" -msgstr "Nu este un număr non-negativ!" +msgstr "Nu este un număr negativ!" #: libraries/classes/Config/FormDisplay.php:101 #: libraries/classes/Config/Validator.php:502 -#, fuzzy msgid "Not a valid port number!" -msgstr "Nu este un număr valid pentru port!" +msgstr "Nu este un număr valid de port!" #: libraries/classes/Config/FormDisplay.php:102 #: libraries/classes/Config/FormDisplay.php:656 #: libraries/classes/Config/Validator.php:567 -#, fuzzy msgid "Incorrect value!" msgstr "Valoare incorectă!" #: libraries/classes/Config/FormDisplay.php:103 #: libraries/classes/Config/Validator.php:583 -#, fuzzy, php-format +#, php-format msgid "Value must be equal or lower than %s!" -msgstr "Valoarea trebuie să fie egală sau mai mică decât %s!" +msgstr "Valoarea trebuie să fie mai mică sau egală cu %s!" #: libraries/classes/Config/FormDisplay.php:616 -#, fuzzy, php-format +#, php-format msgid "Missing data for %s" -msgstr "Date lipsă pentru %s" +msgstr "Lipsesc date pentru %s" #: libraries/classes/Config/FormDisplay.php:806 #: libraries/classes/Config/FormDisplay.php:812 -#, fuzzy msgid "unavailable" msgstr "indisponibil" #: libraries/classes/Config/FormDisplay.php:808 #: libraries/classes/Config/FormDisplay.php:814 -#, fuzzy, php-format +#, php-format msgid "\"%s\" requires %s extension" -msgstr "\"%s\" are nevoie de extensia %s" +msgstr "„%s” necesită extensia %s" #: libraries/classes/Config/FormDisplay.php:835 -#, fuzzy, php-format +#, php-format msgid "Compressed import will not work due to missing function %s." -msgstr "Importarea comprimată nu va funcționa din cauză că lipsește funcția %s." +msgstr "Importul comprimat nu va funcționa deoarece lipsește funcția %s." #: libraries/classes/Config/FormDisplay.php:843 -#, fuzzy, php-format +#, php-format msgid "Compressed export will not work due to missing function %s." -msgstr "Exportarea comprimată nu va funcționa din cauză că lipsește funcția %s." +msgstr "Exportul comprimat nu va funcționa deoarece lipsește funcția %s." #: libraries/classes/Config/FormDisplay.php:856 -#, fuzzy, php-format +#, php-format msgid "maximum %s" msgstr "maxim %s" #: libraries/classes/Config/FormDisplayTemplate.php:233 -#, fuzzy msgid "This setting is disabled, it will not be applied to your configuration." -msgstr "" -"Această setare este dezactivată, nu va fi aplicată la configurarea " -"dumneavoastră." +msgstr "Această setare este dezactivată, nu va fi aplicată la configurarea ta." #: libraries/classes/Config/FormDisplayTemplate.php:235 #: libraries/classes/Relation.php:113 libraries/classes/Relation.php:121 #: libraries/config.values.php:95 libraries/config.values.php:125 -#, fuzzy msgid "Disabled" -msgstr "Dezactivat" +msgstr "Dezactivată" #: libraries/classes/Config/FormDisplayTemplate.php:332 -#, fuzzy, php-format +#, php-format msgid "Set value: %s" -msgstr "Seteaza valoarea: %s" +msgstr "Setează valoarea: %s" #: libraries/classes/Config/FormDisplayTemplate.php:337 -#, fuzzy msgid "Restore default value" msgstr "Restaurează valoarea implicită" #: libraries/classes/Config/FormDisplayTemplate.php:350 -#, fuzzy msgid "Allow users to customize this value" msgstr "Permite utilizatorilor să personalizeze această valoare" #: libraries/classes/Config/Forms/Setup/ServersForm.php:26 -#, fuzzy msgid "Config authentication" -msgstr "Autentificare Config" +msgstr "Autentificare config" #: libraries/classes/Config/Forms/Setup/ServersForm.php:30 -#, fuzzy msgid "HTTP authentication" msgstr "Autentificare HTTP" #: libraries/classes/Config/Forms/Setup/ServersForm.php:33 -#, fuzzy msgid "Signon authentication" msgstr "Autentificare Signon" #: libraries/classes/Config/Forms/User/ExportForm.php:19 -#, fuzzy msgid "Quick" msgstr "Rapid" #: libraries/classes/Config/Forms/User/ExportForm.php:23 -#, fuzzy -#| msgid "Custom color" msgid "Custom" -msgstr "Culoare personalizată" +msgstr "Personalizat" #: libraries/classes/Config/Forms/User/ExportForm.php:84 -#, fuzzy msgid "CSV for MS Excel" -msgstr "Date CSV pentru MS Excel" +msgstr "CSV pentru MS Excel" #: libraries/classes/Config/Forms/User/ExportForm.php:109 -#, fuzzy msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" #: libraries/classes/Config/Forms/User/ExportForm.php:114 #: libraries/classes/Config/Forms/User/ImportForm.php:46 -#, fuzzy -#| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" -msgstr "Foaie de calcul Open Document" +msgstr "Foaie de calcul OpenDocument" #: libraries/classes/Config/Forms/User/ExportForm.php:118 -#, fuzzy -#| msgid "Open Document Text" msgid "OpenDocument Text" -msgstr "Text Open Document" +msgstr "Text OpenDocument" #: libraries/classes/Config/Forms/User/FeaturesForm.php:82 -#, fuzzy msgid "Features" msgstr "Funcționalități" #: libraries/classes/Config/Forms/User/ImportForm.php:37 -#, fuzzy msgid "CSV using LOAD DATA" msgstr "CSV folosind LOAD DATA" #: libraries/classes/Config/Forms/User/MainForm.php:32 -#, fuzzy -#| msgid "Browser transformation" msgid "Default transformations" -msgstr "Transformare navigator" +msgstr "Transformări implicite" #: libraries/classes/Config/PageSettings.php:134 -#, fuzzy -#| msgid "Cannot save settings, submitted form contains errors" msgid "Cannot save settings, submitted configuration form contains errors!" -msgstr "Nu se pot salva setările, formularul trimis conține erori" +msgstr "Nu pot salva setările, formularul de configurare trimis conține erori!" #: libraries/classes/Config/ServerConfigChecks.php:71 #, php-format @@ -7718,12 +6366,14 @@ msgid "" "This value should be double checked to ensure that this directory is neither " "world accessible nor readable or writable by other users on your server." msgstr "" +"Această valoare ar trebui verificată de două ori pentru a te asigura că " +"acest director nu este accesibil pentru toată lumea și nici nu poate fi " +"citit sau scris de alți utilizatori pe serverul tău." #: libraries/classes/Config/ServerConfigChecks.php:169 -#, fuzzy msgid "You should use SSL connections if your database server supports it." msgstr "" -"Ar trebui sa utilizaţi conexiuni SSL dacă serverul bazei de date le suportă." +"Ar trebui să folosești conexiuni SSL dacă serverul bazei de date le suportă." #: libraries/classes/Config/ServerConfigChecks.php:176 msgid "" @@ -7742,11 +6392,15 @@ msgid "" "phpMyAdmin panel. Set %1$sauthentication type%2$s to [kbd]cookie[/kbd] or " "[kbd]http[/kbd]." msgstr "" +"Ai setat tipul de autentificare [kbd]config[/kbd] și ai inclus numele de " +"utilizator și parola pentru autentificarea automată, care nu este o opțiune " +"de dorit pentru gazdele live. Oricine știe sau îți ghicește URL-ul " +"phpMyAdmin poate accesa direct panoul tău phpMyAdmin. Setează %1$stipul de " +"autentificare%2$s la [kbd]cookie[/kbd] sau [kbd]http[/kbd]." #: libraries/classes/Config/ServerConfigChecks.php:230 -#, fuzzy msgid "You allow for connecting to the server without a password." -msgstr "Permiteţi conectarea la server fără o parolă." +msgstr "Permiți conectarea la server fără o parolă." #: libraries/classes/Config/ServerConfigChecks.php:303 #, php-format @@ -7754,6 +6408,8 @@ msgid "" "%sZip decompression%s requires functions (%s) which are unavailable on this " "system." msgstr "" +"%sDecompresia Zip%s necesită funcții (%s) care nu sunt disponibile pe acest " +"sistem." #: libraries/classes/Config/ServerConfigChecks.php:324 #, php-format @@ -7761,6 +6417,8 @@ msgid "" "%sZip compression%s requires functions (%s) which are unavailable on this " "system." msgstr "" +"%sCompresia Zip%s necesită funcții (%s) care nu sunt disponibile pe acest " +"sistem." #: libraries/classes/Config/ServerConfigChecks.php:360 msgid "" @@ -7770,15 +6428,13 @@ msgid "" msgstr "" #: libraries/classes/Config/ServerConfigChecks.php:372 -#, fuzzy msgid "Key is too short, it should have at least 32 characters." -msgstr "Cheia este prea scurtă, ar trebui sa aibă cel puţin 32 de caractere." +msgstr "Cheia este prea scurtă, ea trebuie să aibă cel puțin 32 de caractere." #: libraries/classes/Config/ServerConfigChecks.php:382 -#, fuzzy msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -"Cheia ar trebui sa conţină litere, numere [em]si[/em] caractere speciale." +"Cheia ar trebui să conțină litere, numere [em]și[/em] caractere speciale." #: libraries/classes/Config/ServerConfigChecks.php:418 #, php-format @@ -7787,6 +6443,9 @@ msgid "" "may cause random session invalidation (currently session.gc_maxlifetime is " "%5$d)." msgstr "" +"%1$sValabilitatea cookie-urilor de autentificare%2$s, care este mai mare " +"decât %3$ssession.gc_maxlifetime%4$s, poate provoca o invalidare aleatorie a " +"sesiunii (acum session.gc_maxlifetime is %5$d)." #: libraries/classes/Config/ServerConfigChecks.php:442 #, php-format @@ -7794,6 +6453,9 @@ msgid "" "%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at " "most. Values larger than 1800 may pose a security risk such as impersonation." msgstr "" +"%sValabilitatea cookie-urilor de autentificare%s ar trebui setată la maxim " +"1800 de secunde (30 de minute). Valorile mai mari de 1800 de secunde pot " +"reprezenta un risc de securitate, cum ar fi impersonalizarea." #: libraries/classes/Config/ServerConfigChecks.php:466 #, php-format @@ -7801,228 +6463,199 @@ msgid "" "If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not " "0, %sLogin cookie validity%s must be set to a value less or equal to it." msgstr "" +"Dacă folosești [kbd]cookie-uri[/kbd] de autentificare și %sstocarea cookie-" +"urilor de autentificare%s nu este 0, %svalabilitatea cookie-urilor de " +"autentificare%s trebuie să fie setată la o valoare mai mică sau egală cu " +"aceasta." #: libraries/classes/Config/ServerConfigChecks.php:506 -#, fuzzy, php-format -#| msgid "" -#| "%sBzip2 compression and decompression%s requires functions (%s) which are " -#| "unavailable on this system." +#, php-format msgid "" "%1$sBzip2 compression and decompression%2$s requires functions (%3$s) which " "are unavailable on this system." msgstr "" -"%sCompresia şi decompresia Bzip2%s necesită funcţiile (%s) care sunt " -"indisponibile pe acest sistem." +"%1$sCompresia și decompresia Bzip2%2$s necesită funcții (%3$s) care nu sunt " +"disponibile pe acest sistem." #: libraries/classes/Config/ServerConfigChecks.php:538 -#, fuzzy, php-format -#| msgid "" -#| "%sGZip compression and decompression%s requires functions (%s) which are " -#| "unavailable on this system." +#, php-format msgid "" "%1$sGZip compression and decompression%2$s requires functions (%3$s) which " "are unavailable on this system." msgstr "" -"%sCompresia si decompresia GZip%s necesită funcţiile (%s) care sunt " -"indisponibile pe acest sistem." +"%1$sCompresia și decompresia GZip%2$s necesită funcții (%3$s) care nu sunt " +"disponibile pe acest sistem." #: libraries/classes/Config/Validator.php:210 #: libraries/classes/Config/Validator.php:217 -#, fuzzy msgid "Could not connect to the database server!" -msgstr "Nu s-a putut realiza conexiunea cu serverul de baze de date!" +msgstr "Nu am putut conecta serverul bazei de date!" #: libraries/classes/Config/Validator.php:249 -#, fuzzy -#| msgid "Authentication type" msgid "Invalid authentication type!" -msgstr "Tipul autentificării" +msgstr "Tip de autentificare invalid!" #: libraries/classes/Config/Validator.php:256 -#, fuzzy msgid "Empty username while using [kbd]config[/kbd] authentication method!" msgstr "" -"Nume de utilizator gol la folosirea autentificării de tipul " +"Golește numele de utilizator în timpul folosirii metodei de autentificare " "[kbd]config[/kbd]!" #: libraries/classes/Config/Validator.php:264 -#, fuzzy msgid "" "Empty signon session name while using [kbd]signon[/kbd] authentication " "method!" msgstr "" -"Nume de sesiune signon gol la folosirea autentificării de tipul " -"[kbd]signon[/kbd]!" +"Golește numele sesiunii signon în timpul folosirii metodei de autentificare " +"[kbd]config[/kbd]!" #: libraries/classes/Config/Validator.php:273 -#, fuzzy msgid "Empty signon URL while using [kbd]signon[/kbd] authentication method!" -msgstr "URL signon gol la folosirea autentificării de tip [kbd]signon[/kbd]!" +msgstr "" +"Golește URL-ul signon în timpul folosirii metodei de autentificare " +"[kbd]config[/kbd]!" #: libraries/classes/Config/Validator.php:326 -#, fuzzy -#| msgid "" -#| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" msgid "" "Empty phpMyAdmin control user while using phpMyAdmin configuration storage!" msgstr "" -"Control user phpMyAdmin gol la folosirea phpMyAdmin configuration storage" +"Golește utilizatorul de control phpMyAdmin în timpul folosirii spațiului de " +"stocare pentru configurarea phpMyAdmin!" #: libraries/classes/Config/Validator.php:333 -#, fuzzy -#| msgid "" -#| "Empty phpMyAdmin control user password while using phpMyAdmin " -#| "configuration storage" msgid "" "Empty phpMyAdmin control user password while using phpMyAdmin configuration " "storage!" msgstr "" -"Parolă control user phpMyAdmin goală la folosirea phpMyAdmin configuration " -"storage" +"Golește parola utilizatorul de control phpMyAdmin în timpul folosirii " +"spațiului de stocare pentru configurarea phpMyAdmin!" #: libraries/classes/Config/Validator.php:431 -#, fuzzy msgid "Incorrect value:" msgstr "Valoare incorectă:" #: libraries/classes/Config/Validator.php:440 -#, fuzzy, php-format +#, php-format msgid "Incorrect IP address: %s" msgstr "Adresă IP incorectă: %s" #: libraries/classes/Console.php:87 -#, fuzzy, php-format +#, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" -msgstr[0] "Se afişează %1$d marcaj (atât privat cât şi partajat)" -msgstr[1] "Se afişează %1$d marcaje (atât private cât şi partajate)" -msgstr[2] "Se afişează %1$d marcaje (atât private cât şi partajate)" +msgstr[0] "Arăt un semn de carte (atât privat cât și partajat)" +msgstr[1] "Arăt %1$d semne de carte (atât private cât și partajate)" +msgstr[2] "Arăt %1$d de semne de carte (atât private cât și partajate)" #: libraries/classes/Console.php:94 -#, fuzzy msgid "No bookmarks" -msgstr "Fără semne de carte" +msgstr "Niciun semn de carte" #: libraries/classes/Console.php:129 -#, fuzzy msgid "SQL Query Console" -msgstr "Consolă pentru interogare SQL" +msgstr "Consolă interogare SQL" #: libraries/classes/Controllers/Database/DatabaseStructureController.php:270 -#, fuzzy msgid "Favorite List is full!" -msgstr "Lista favoritelor este plină!" +msgstr "Lista de favorite este plină!" #: libraries/classes/Controllers/Database/DatabaseStructureController.php:571 #: tbl_operations.php:405 -#, fuzzy, php-format +#, php-format msgid "Table %s has been emptied." msgstr "Tabelul %s a fost golit." #: libraries/classes/Controllers/Database/DatabaseStructureController.php:592 #: tbl_operations.php:423 view_operations.php:128 -#, fuzzy, php-format -#| msgid "View %s has been dropped." +#, php-format msgid "View %s has been dropped." -msgstr "Vizualizarea %s a fost eliminată" +msgstr "Vizualizarea %s a fost eliminată." #: libraries/classes/Controllers/Database/DatabaseStructureController.php:593 #: tbl_operations.php:424 -#, fuzzy, php-format -#| msgid "Table %s has been dropped." +#, php-format msgid "Table %s has been dropped." -msgstr "Tabelul %s a fost aruncat" +msgstr "Tabelul %s a fost eliminat." #: libraries/classes/Controllers/Database/DatabaseStructureController.php:804 #: libraries/classes/Display/Results.php:4530 -#, fuzzy, php-format +#, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -"Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s." +"Această vizualizare are cel puțin acest număr de rânduri. Te rog vezi " +"%sdocumentația%s." #: libraries/classes/Controllers/Database/DatabaseStructureController.php:1020 -#, fuzzy msgid "unknown" msgstr "necunoscut" #: libraries/classes/Controllers/Server/ServerBinlogController.php:156 -#, fuzzy msgid "Log name" -msgstr "Denumire jurnal" +msgstr "Nume jurnal" #: libraries/classes/Controllers/Server/ServerBinlogController.php:157 -#, fuzzy msgid "Position" msgstr "Poziție" #: libraries/classes/Controllers/Server/ServerBinlogController.php:158 #: libraries/classes/Rte/Events.php:428 -#, fuzzy msgid "Event type" -msgstr "Tip eveniment" +msgstr "Tip de eveniment" #: libraries/classes/Controllers/Server/ServerBinlogController.php:159 #: libraries/classes/ReplicationGui.php:629 -#, fuzzy msgid "Server ID" msgstr "ID server" #: libraries/classes/Controllers/Server/ServerBinlogController.php:160 -#, fuzzy msgid "Original position" -msgstr "Pozitie originală" +msgstr "Poziție originală" #: libraries/classes/Controllers/Server/ServerBinlogController.php:161 #: templates/table/structure/display_table_stats.twig:3 -#, fuzzy msgid "Information" -msgstr "Informație" +msgstr "Informații" #: libraries/classes/Controllers/Server/ServerBinlogController.php:198 #: libraries/classes/Controllers/Server/ServerBinlogController.php:200 #: libraries/classes/Display/Results.php:997 libraries/classes/Util.php:2304 #: libraries/classes/Util.php:2307 -#, fuzzy msgctxt "Previous page" msgid "Previous" -msgstr "Anterior" +msgstr "Anterioară" #: libraries/classes/Controllers/Server/ServerBinlogController.php:211 #: libraries/classes/Server/Status/Processes.php:181 -#, fuzzy msgid "Truncate Shown Queries" -msgstr "Truncare comenzi afișate" +msgstr "Taie interogările afișate" #: libraries/classes/Controllers/Server/ServerBinlogController.php:215 #: libraries/classes/Server/Status/Processes.php:183 -#, fuzzy msgid "Show Full Queries" -msgstr "Afișare comandă întreagă" +msgstr "Arată toate interogările" #: libraries/classes/Controllers/Server/ServerBinlogController.php:232 #: libraries/classes/Controllers/Server/ServerBinlogController.php:234 #: libraries/classes/Display/Results.php:1051 libraries/classes/Util.php:2335 #: libraries/classes/Util.php:2345 -#, fuzzy msgctxt "Next page" msgid "Next" -msgstr "Următoarea" +msgstr "Următoare" #: libraries/classes/Controllers/Server/ServerDatabasesController.php:163 -#, fuzzy, php-format +#, php-format msgid "Database %1$s has been created." msgstr "Baza de date %1$s a fost creată." #: libraries/classes/Controllers/Server/ServerDatabasesController.php:202 -#, fuzzy, php-format -#| msgid "%s databases have been dropped successfully." +#, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." -msgstr[0] "%s baza(ele) de data(e) au fost aruncate." -msgstr[1] "%s baza(ele) de data(e) au fost aruncate." -msgstr[2] "%s baza(ele) de data(e) au fost aruncate." +msgstr[0] "O bază de data a fost eliminată cu succes." +msgstr[1] "%1$d baze de data au fost eliminate cu succes." +msgstr[2] "%1$d de baze de data au fost eliminate cu succes." #: libraries/classes/Controllers/Server/ServerDatabasesController.php:337 #: libraries/classes/Import.php:122 @@ -8030,7 +6663,6 @@ msgstr[2] "%s baza(ele) de data(e) au fost aruncate." #: templates/database/structure/table_header.twig:26 #: templates/table/structure/display_partitions.twig:28 #: templates/table/structure/actions_in_table_structure.twig:114 -#, fuzzy msgid "Rows" msgstr "Rânduri" @@ -8039,7 +6671,6 @@ msgstr "Rânduri" #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:26 #: templates/table/tracking/structure_snapshot_indexes.twig:1 -#, fuzzy msgid "Indexes" msgstr "Indexuri" @@ -8049,7 +6680,6 @@ msgstr "Indexuri" #: libraries/classes/Server/Status.php:315 #: templates/server/databases/databases_footer.twig:7 #: templates/table/structure/display_table_stats.twig:45 -#, fuzzy msgid "Total" msgstr "Total" @@ -8062,53 +6692,49 @@ msgstr "Asupra" #: libraries/classes/Controllers/Server/ServerDatabasesController.php:424 #: templates/database/structure/structure_table_row.twig:15 -#, fuzzy msgid "Not replicated" -msgstr "Fără replicare" +msgstr "Nereprodus" #: libraries/classes/Controllers/Server/ServerDatabasesController.php:437 #: templates/database/structure/structure_table_row.twig:16 -#, fuzzy msgid "Replicated" -msgstr "Replicat" +msgstr "Reprodus" #: libraries/classes/Controllers/Server/ServerVariablesController.php:116 -#, fuzzy, php-format -#| msgid "Server variables and settings" +#, php-format msgid "Not enough privilege to view server variables and settings. %s" -msgstr "Variabile și configurări de server" +msgstr "" +"Nu există suficiente privilegii pentru a vedea variabilele și setările " +"serverului. %s" #: libraries/classes/Controllers/Server/ServerVariablesController.php:234 msgid "Setting variable failed" -msgstr "" +msgstr "Setarea variabilei a eșuat" #: libraries/classes/Controllers/Table/TableChartController.php:82 #: libraries/classes/Controllers/Table/TableGisVisualizationController.php:101 msgid "No SQL query was set to fetch data." -msgstr "" +msgstr "Nu a fost setată nicio interogare SQL pentru aducerea datelor." #: libraries/classes/Controllers/Table/TableChartController.php:158 msgid "No numeric columns present in the table to plot." msgstr "" #: libraries/classes/Controllers/Table/TableChartController.php:216 -#, fuzzy msgid "No data to display" -msgstr "Nu sînt date de afișat" +msgstr "Nu sunt date de afișat" #: libraries/classes/Controllers/Table/TableIndexesController.php:157 #: libraries/classes/Controllers/Table/TableStructureController.php:735 #: libraries/classes/Controllers/Table/TableStructureController.php:981 #: tbl_addfield.php:93 -#, fuzzy, php-format +#, php-format msgid "Table %1$s has been altered successfully." -msgstr "Tabelul %1$s a fost alterat cu succes." +msgstr "Tabelul %1$s a fost modificat cu succes." #: libraries/classes/Controllers/Table/TableRelationController.php:224 -#, fuzzy -#| msgid "Thread %s was successfully killed." msgid "Display column was successfully updated." -msgstr "Firul de execuție %s a fost oprit cu succes." +msgstr "Coloana de afișare a fost actualizată cu succes." #: libraries/classes/Controllers/Table/TableRelationController.php:265 #: libraries/classes/Controllers/Table/TableSearchController.php:578 @@ -8116,80 +6742,63 @@ msgstr "Firul de execuție %s a fost oprit cu succes." #: libraries/classes/Rte/Routines.php:1462 #: libraries/classes/SqlQueryForm.php:93 tbl_row_action.php:142 #: view_operations.php:67 -#, fuzzy msgid "Your SQL query has been executed successfully." -msgstr "Comanda SQL a fost executată cu succes." +msgstr "Interogarea SQL a fost executată cu succes." #: libraries/classes/Controllers/Table/TableRelationController.php:294 -#, fuzzy -#| msgid "Internal relation added" msgid "Internal relationships were successfully updated." -msgstr "Relație internă adăugată" +msgstr "Relațiile interne au fost actualizate cu succes." #: libraries/classes/Controllers/Table/TableSearchController.php:778 -#, fuzzy -#| msgid "Table Search" msgid "Table search" -msgstr "Caută în tabelă" +msgstr "Căutare în tabel" #: libraries/classes/Controllers/Table/TableSearchController.php:785 -#, fuzzy -#| msgid "Search" msgid "Zoom search" -msgstr "Caută" +msgstr "Mărește căutarea" #: libraries/classes/Controllers/Table/TableSearchController.php:790 #: templates/table/search/selection_form.twig:75 -#, fuzzy -#| msgid "Find and Replace" msgid "Find and replace" -msgstr "Caută şi Înlocuieşte" +msgstr "Caută și înlocuiește" #: libraries/classes/Controllers/Table/TableStructureController.php:172 #, php-format msgid "The name '%s' is a MySQL reserved keyword." msgid_plural "The names '%s' are MySQL reserved keywords." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Numele „%s” este un cuvânt cheie rezervat pentru MySQL." +msgstr[1] "Numele „%s” sunt cuvinte cheie rezervate pentru MySQL." +msgstr[2] "Numele „%s” sunt cuvinte cheie rezervate pentru MySQL." #: libraries/classes/Controllers/Table/TableStructureController.php:260 -#, fuzzy msgid "No column selected." -msgstr "Nicio coloană aleasă." +msgstr "Nicio coloană selectată." #: libraries/classes/Controllers/Table/TableStructureController.php:474 -#, fuzzy -#| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." -msgstr "Utilizatorii selectați au fost eliminați." +msgstr "Coloanele au fost mutate cu succes." #: libraries/classes/Controllers/Table/TableStructureController.php:510 -#, fuzzy, php-format -#| msgid "Failed to get real row count." +#, php-format msgid "Failed to get description of column %s!" -msgstr "Nu pot obţine numărul real de rânduri." +msgstr "Obținerea descrierii coloanei %s a eșuat!" #: libraries/classes/Controllers/Table/TableStructureController.php:746 #: libraries/classes/Controllers/Table/TableStructureController.php:1030 #: libraries/classes/Tracking.php:789 -#, fuzzy -#| msgid "Query type" msgid "Query error" -msgstr "Tip interogare" +msgstr "Eroare de interogare" #: libraries/classes/Controllers/Table/TableStructureController.php:975 -#, fuzzy, php-format -#| msgid "Table %1$s has been altered successfully." +#, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Tabelul %1$s a fost alterat cu succes." +msgstr "Tabelul %1$s a fost modificat cu succes. Privilegiile au fost ajustate." #: libraries/classes/Controllers/Table/TableStructureController.php:1191 #: templates/table/structure/check_all_table_column.twig:17 -#, fuzzy msgid "Change" -msgstr "Schimbă" +msgstr "Modifică" #: libraries/classes/Controllers/Table/TableStructureController.php:1192 #: libraries/classes/Controllers/Table/TableStructureController.php:1193 @@ -8201,9 +6810,8 @@ msgstr "Schimbă" #: templates/table/relation/foreign_key_row.twig:31 #: templates/table/structure/check_all_table_column.twig:24 #: templates/server/databases/databases_footer.twig:55 -#, fuzzy msgid "Drop" -msgstr "Aruncă" +msgstr "Elimină" #: libraries/classes/Controllers/Table/TableStructureController.php:1195 #: libraries/classes/Controllers/Table/TableStructureController.php:1200 @@ -8214,7 +6822,6 @@ msgstr "Aruncă" #: templates/table/tracking/structure_snapshot_columns.twig:27 #: templates/columns_definitions/table_fields_definitions.twig:46 #: templates/table/structure/display_table_stats.twig:24 -#, fuzzy msgid "Index" msgstr "Index" @@ -8224,7 +6831,6 @@ msgstr "Index" #: templates/table/structure/check_all_table_column.twig:40 #: templates/columns_definitions/column_indexes.twig:8 #: templates/table/tracking/structure_snapshot_indexes.twig:7 -#, fuzzy msgid "Unique" msgstr "Unic" @@ -8232,129 +6838,102 @@ msgstr "Unic" #: libraries/classes/Controllers/Table/TableStructureController.php:1202 #: templates/columns_definitions/column_indexes.twig:20 msgid "Spatial" -msgstr "" +msgstr "Spațial" #: libraries/classes/Controllers/Table/TableStructureController.php:1198 #: libraries/classes/Controllers/Table/TableStructureController.php:1203 #: templates/table/structure/check_all_table_column.twig:54 #: templates/table/structure/check_all_table_column.twig:66 #: templates/columns_definitions/column_indexes.twig:16 -#, fuzzy msgid "Fulltext" -msgstr "Tot textul" +msgstr "Text întreg" #: libraries/classes/Controllers/Table/TableStructureController.php:1204 -#, fuzzy -#| msgid "Browse distinct values" msgid "Distinct values" -msgstr "Răsfoiește valori distincte" +msgstr "Valori distincte" #: libraries/classes/Core.php:346 -#, fuzzy, php-format +#, php-format msgid "The %s extension is missing. Please check your PHP configuration." -msgstr "Extensia %s lipsește. Vă rugăm să vă verificați configurația PHP." +msgstr "Extensia %s lipsește. Te rog verifică-ți configurarea PHP." #: libraries/classes/Core.php:837 libraries/mult_submits.inc.php:324 #: tbl_operations.php:242 tbl_replace.php:318 templates/preview_sql.twig:3 -#, fuzzy msgid "No change" -msgstr "Nici o schimbare" +msgstr "Nicio modificare" #: libraries/classes/Core.php:1212 -#, fuzzy msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -"Ați activat mbstring.func_overload în configurația PHP. Această opțiune nu " -"este compatibilă cu phpMyAdmin și poate duce la deteriorarea unor date!" +"Ai activat mbstring.func_overload în configurarea ta PHP. Această opțiune " +"este incompatibilă cu phpMyAdmin și ar putea provoca deteriorarea unor date!" #: libraries/classes/Core.php:1226 -#, fuzzy -#| msgid "" -#| "You have enabled mbstring.func_overload in your PHP configuration. This " -#| "option is incompatible with phpMyAdmin and might cause some data to be " -#| "corrupted!" msgid "" "You have disabled ini_get and/or ini_set in php.ini. This option is " "incompatible with phpMyAdmin!" msgstr "" -"Ați activat mbstring.func_overload în configurația PHP. Această opțiune nu " -"este compatibilă cu phpMyAdmin și poate duce la deteriorarea unor date!" +"Ai dezactivat ini_get și/sau ini_set în php.ini. Această opțiune este " +"incompatibilă cu phpMyAdmin!" #: libraries/classes/Core.php:1277 -#, fuzzy msgid "GLOBALS overwrite attempt" -msgstr "S-a încercat suprascrierea valorilor globale" +msgstr "Încercare suprascriere GLOBALE" #: libraries/classes/Core.php:1284 -#, fuzzy msgid "possible exploit" -msgstr "potenţială vulnerabilitate" +msgstr "vulnerabilitate potențială" #: libraries/classes/Database/Designer.php:108 -#, fuzzy -#| msgid "Could not load import plugins, please check your installation!" msgid "Could not load schema plugins, please check your installation!" -msgstr "" -"Nu au putut fi încărcate extensii suplimentare de import, verificați " -"instalarea!" +msgstr "Nu am putut încărca modulele din schemă, te rog verifică-ți instalarea!" #: libraries/classes/Database/Qbe.php:447 #: templates/table/search/search_and_replace.twig:6 -#, fuzzy msgid "Column:" msgstr "Coloană:" #: libraries/classes/Database/Qbe.php:493 -#, fuzzy msgid "Alias:" msgstr "Alias:" #: libraries/classes/Database/Qbe.php:545 -#, fuzzy msgid "Sort:" -msgstr "Sortare:" +msgstr "Sortează:" #: libraries/classes/Database/Qbe.php:607 -#, fuzzy -#| msgid "Sort:" msgid "Sort order:" -msgstr "Sortare:" +msgstr "Ordine de sortare:" #: libraries/classes/Database/Qbe.php:656 -#, fuzzy msgid "Show:" -msgstr "Afișează:" +msgstr "Arată:" #: libraries/classes/Database/Qbe.php:705 -#, fuzzy msgid "Criteria:" msgstr "Criteriu:" #: libraries/classes/Database/Qbe.php:788 #: libraries/classes/Database/Qbe.php:820 -#, fuzzy msgid "Update Query" -msgstr "Reînnoire comandă" +msgstr "Actualizează interogarea" #: libraries/classes/Database/Qbe.php:803 -#, fuzzy msgid "Use Tables" -msgstr "Utilizare tabele" +msgstr "Folosește tabele" #: libraries/classes/Database/Qbe.php:841 #: libraries/classes/Database/Qbe.php:952 -#, fuzzy msgid "Or:" msgstr "Sau:" #: libraries/classes/Database/Qbe.php:845 #: libraries/classes/Database/Qbe.php:937 -#, fuzzy msgid "And:" -msgstr "Şi:" +msgstr "Și:" #: libraries/classes/Database/Qbe.php:850 #, fuzzy @@ -8367,9 +6946,8 @@ msgid "Del" msgstr "Del" #: libraries/classes/Database/Qbe.php:869 -#, fuzzy msgid "Modify:" -msgstr "Modificare:" +msgstr "Modifică:" #: libraries/classes/Database/Qbe.php:932 #, fuzzy @@ -8382,73 +6960,58 @@ msgid "Del:" msgstr "Șterge:" #: libraries/classes/Database/Qbe.php:1814 -#, fuzzy, php-format +#, php-format msgid "SQL query on database %s:" -msgstr "Comandă SQL pe baza de date %s:" +msgstr "Interogare SQL în baza de date %s:" #: libraries/classes/Database/Qbe.php:1833 -#, fuzzy msgid "Submit Query" -msgstr "Trimite comanda" +msgstr "Trimite interogarea" #: libraries/classes/Database/Qbe.php:1847 -#, fuzzy msgid "Saved bookmarked search:" -msgstr "Căutarea salvată:" +msgstr "Căutarea marcată cu semn de carte a fost salvată:" #: libraries/classes/Database/Qbe.php:1849 -#, fuzzy msgid "New bookmark" msgstr "Semn de carte nou" #: libraries/classes/Database/Qbe.php:1875 -#, fuzzy msgid "Create bookmark" -msgstr "Creare semn de carte" +msgstr "Creează semn de carte" #: libraries/classes/Database/Qbe.php:1878 -#, fuzzy msgid "Update bookmark" -msgstr "Actualizare semn de carte" +msgstr "Actualizează semnul de carte" #: libraries/classes/Database/Qbe.php:1880 -#, fuzzy msgid "Delete bookmark" -msgstr "Ștergeți semnul de carte" +msgstr "Șterge semnul de carte" #: libraries/classes/Database/Search.php:93 -#, fuzzy msgid "at least one of the words" msgstr "cel puțin unul dintre cuvinte" #: libraries/classes/Database/Search.php:94 -#, fuzzy -#| msgid "at least one of the words" msgid "all of the words" -msgstr "cel puțin unul dintre cuvinte" +msgstr "toate cuvintele" #: libraries/classes/Database/Search.php:95 -#, fuzzy -#| msgid "the exact phrase" msgid "the exact phrase as substring" -msgstr "fraza exactă" +msgstr "fraza exactă ca subșir" #: libraries/classes/Database/Search.php:96 -#, fuzzy -#| msgid "the exact phrase" msgid "the exact phrase as whole field" -msgstr "fraza exactă" +msgstr "fraza exactă ca întreg câmp" #: libraries/classes/Database/Search.php:97 -#, fuzzy msgid "as regular expression" -msgstr "ca o expresie" +msgstr "ca expresie obișnuită" #: libraries/classes/Database/Search.php:308 #: libraries/classes/Database/Search.php:312 -#, fuzzy msgid "Words are separated by a space character (\" \")." -msgstr "Cuvinte despărțite de un spațiu (\" \")." +msgstr "Cuvintele sunt separate printr-un caracter spațiu („ ”)." #: libraries/classes/DatabaseInterface.php:1462 #, php-format @@ -8457,95 +7020,88 @@ msgid "" "configuration setting for [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/em]. " "phpMyAdmin is currently using the default time zone of the database server." msgstr "" +"Nu pot folosi fusul orar „%1$s” pentru serverul %2$d. te rog verifică " +"setarea de configurare pentru " +"[em]$cfg['Servers'][%3$d]['SessionTimeZone'][/em]. phpMyAdmin folosește în " +"prezent fusul orar implicit al serverului de baze de date." #: libraries/classes/DatabaseInterface.php:1509 -#, fuzzy -#| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" -msgstr "Fișierul de configurare nu poate fi citit!" +msgstr "Setarea conexiunii de colaționare configurată a eșuat!" #: libraries/classes/DatabaseInterface.php:2122 -#, fuzzy msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -"Server-ul nu răspunde (sau soclul serverului MySQL local nu este configurat " +"Serverul nu răspunde (sau socket-ul serverului local nu este configurat " "corect)." #: libraries/classes/DatabaseInterface.php:2127 -#, fuzzy msgid "The server is not responding." msgstr "Serverul nu răspunde." #: libraries/classes/DatabaseInterface.php:2131 msgid "Logout and try as another user." -msgstr "" +msgstr "Dezautentifică-te și încearcă ca un alt utilizator." #: libraries/classes/DatabaseInterface.php:2137 -#, fuzzy msgid "Please check privileges of directory containing database." -msgstr "" -"Vă rugăm să verificați drepturile de acces ale directorului ce conține baza " -"de date." +msgstr "Te rog verifică privilegiile directorului care conține baza de date." #: libraries/classes/DatabaseInterface.php:2148 -#, fuzzy msgid "Details…" msgstr "Detalii…" #: libraries/classes/DatabaseInterface.php:2452 -#, fuzzy -#| msgid "Missing parameter:" msgid "Missing connection parameters!" -msgstr "Parametru lipsă:" +msgstr "Lipsesc parametrii de conectare!" #: libraries/classes/DatabaseInterface.php:2479 msgid "Connection for controluser as defined in your configuration failed." msgstr "" +"Conexiunea pentru utilizatorul de control definit în configurarea ta a eșuat." #: libraries/classes/DatabaseInterface.php:2995 #, php-format msgid "See %sour documentation%s for more information." -msgstr "" +msgstr "Vezi %sdocumentația noastră%s pentru mai multe informații." #: libraries/classes/DatabaseInterface.php:3012 msgid "" "You are using the mysql extension which is deprecated in phpMyAdmin. Please " "consider installing the mysqli extension." msgstr "" +"Folosești extensia mysql care este învechită în phpMyAdmin. Te rog să " +"instalezi extensia mysqli." #: libraries/classes/Dbi/DbiMysqli.php:169 msgid "SSL connection enforced by server, automatically enabling it." -msgstr "" +msgstr "Conexiunea SSL a fost impusă de server, este activată automat." #: libraries/classes/Display/ChangePassword.php:68 #: libraries/classes/ReplicationGui.php:867 #: libraries/classes/Server/Privileges.php:1674 -#, fuzzy msgid "No Password" -msgstr "Nu există parolă" +msgstr "Nicio parolă" #: libraries/classes/Display/ChangePassword.php:76 #: libraries/classes/Plugins/Auth/AuthenticationCookie.php:183 #: libraries/classes/ReplicationGui.php:436 #: libraries/classes/ReplicationGui.php:858 #: libraries/classes/Server/Privileges.php:1661 -#, fuzzy msgid "Password:" msgstr "Parolă:" #: libraries/classes/Display/ChangePassword.php:79 msgid "Enter:" -msgstr "" +msgstr "Introdu:" #: libraries/classes/Display/ChangePassword.php:86 #: libraries/classes/ReplicationGui.php:878 #: libraries/classes/Server/Privileges.php:1693 -#, fuzzy -#| msgid "Re-type" msgid "Re-type:" -msgstr "Re-tastează" +msgstr "Tastează din nou:" #: libraries/classes/Display/ChangePassword.php:117 #: libraries/classes/Display/ChangePassword.php:150 @@ -8561,120 +7117,105 @@ msgid "" "connection that encrypts the password using RSA'; while connecting to " "the server." msgstr "" +"Această metodă necesită folosirea unei „conexiuni SSL” sau a unei „" +"conexiuni necriptate care criptează parola folosind RSA”; în timpul " +"conectării la server." #: libraries/classes/Display/Export.php:319 -#, fuzzy msgid "@SERVER@ will become the server name" -msgstr "@SERVER@ va deveni numele server-ului" +msgstr "@SERVER@ va deveni numele serverului" #: libraries/classes/Display/Export.php:321 -#, fuzzy msgid ", @DATABASE@ will become the database name" msgstr ", @DATABASE@ va deveni numele bazei de date" #: libraries/classes/Display/Export.php:323 -#, fuzzy msgid ", @TABLE@ will become the table name" -msgstr ", @TABLE@ va deveni numele tabelei" +msgstr ", @TABLE@ va deveni numele tabelului" #: libraries/classes/Display/Export.php:329 -#, fuzzy, php-format -#| msgid "" -#| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: " -#| "%3$s. Other text will be kept as is." +#, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " "formatting strings. Additionally the following transformations will happen: " "%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" -"Această valoare este interpretată folosind %1$sstrftime%2$s, ca sa puteţi " -"folosi şiruri de formatare a timpului. În plus, următoarele transformări vor " -"avea loc: %3$s. Orice alt text va fi păstrat aşa cum este. Vedeţi %4$sFAQ" -"%5$s pentru detalii." +"Această valoare este interpretată folosind %1$sstrftime%2$s, deci poți " +"folosi șiruri de formatare pentru timp. În plus, vor avea loc următoarele " +"transformări: %3$s. Orice alt text va fi păstrat așa cum este. Vezi %4$" +"sÎntrebări frecvente%5$s pentru detalii." #: libraries/classes/Display/Export.php:558 msgid "Defined aliases" -msgstr "" +msgstr "Aliasuri definite" #: libraries/classes/Display/Export.php:614 #: templates/display/export/options_output.twig:7 msgid "Rename exported databases/tables/columns" -msgstr "" +msgstr "Redenumește bazele de date/tabelele/coloanele exportate" #: libraries/classes/Display/Export.php:666 -#, fuzzy msgid "Could not load export plugins, please check your installation!" -msgstr "" -"Nu au putut fi încărcate modulele de export adiționale, vă rog verificați " -"instalarea!" +msgstr "Nu am putut încărca modulele de export, te rog verifică-ți instalarea!" #: libraries/classes/Display/GitRevision.php:65 #, php-format msgid "%1$s from %2$s branch" -msgstr "" +msgstr "%1$s din ramura %2$s" #: libraries/classes/Display/GitRevision.php:67 msgid "no branch" -msgstr "" +msgstr "nicio ramură" #: libraries/classes/Display/GitRevision.php:73 msgid "Git revision:" -msgstr "" +msgstr "Revizie Git:" #: libraries/classes/Display/GitRevision.php:76 -#, fuzzy, php-format +#, php-format msgid "committed on %1$s by %2$s" -msgstr "Creare relație" +msgstr "consemnat pe %1$s de %2$s" #: libraries/classes/Display/GitRevision.php:86 -#, fuzzy, php-format +#, php-format msgid "authored on %1$s by %2$s" -msgstr "Creare relație" +msgstr "scris pe %1$s de %2$s" #: libraries/classes/Display/Results.php:907 -#, fuzzy msgid "Save edited data" -msgstr "Salvaţi datele editate" +msgstr "Salvează datele editate" #: libraries/classes/Display/Results.php:913 -#, fuzzy msgid "Restore column order" -msgstr "Restaurează ordinea coloanei" +msgstr "Restaurează ordinea coloanelor" #: libraries/classes/Display/Results.php:994 libraries/classes/Util.php:2303 #: libraries/classes/Util.php:2306 -#, fuzzy msgctxt "First page" msgid "Begin" msgstr "Început" #: libraries/classes/Display/Results.php:1081 libraries/classes/Util.php:2336 #: libraries/classes/Util.php:2346 -#, fuzzy msgctxt "Last page" msgid "End" msgstr "Sfârșit" #: libraries/classes/Display/Results.php:1110 -#, fuzzy msgid "All" -msgstr "Toate" +msgstr "Tot" #: libraries/classes/Display/Results.php:1411 -#, fuzzy msgid "Sort by key" -msgstr "Sortare după cheie" +msgstr "Sortează după cheie" #: libraries/classes/Display/Results.php:1718 #: templates/display/results/options_block.twig:14 -#, fuzzy msgid "Partial texts" msgstr "Texte parțiale" #: libraries/classes/Display/Results.php:1722 #: templates/display/results/options_block.twig:14 -#, fuzzy msgid "Full texts" msgstr "Texte întregi" @@ -8688,7 +7229,6 @@ msgstr "Texte întregi" #: templates/database/qbe/sort_select_cell.twig:7 #: templates/server/databases/databases_header.twig:22 #: templates/table/search/options.twig:54 -#, fuzzy msgid "Descending" msgstr "Descrescător" @@ -8702,15 +7242,13 @@ msgstr "Descrescător" #: templates/database/qbe/sort_select_cell.twig:5 #: templates/server/databases/databases_header.twig:22 #: templates/table/search/options.twig:54 -#, fuzzy msgid "Ascending" -msgstr "Crescătoare" +msgstr "Crescător" #: libraries/classes/Display/Results.php:3371 #: libraries/classes/Display/Results.php:3386 -#, fuzzy msgid "The row has been deleted." -msgstr "Înregistrarea a fost ștearsă." +msgstr "Rândul a fost șters." #: libraries/classes/Display/Results.php:3419 #: libraries/classes/Display/Results.php:4669 @@ -8720,27 +7258,26 @@ msgid "Kill" msgstr "Oprește" #: libraries/classes/Display/Results.php:4110 -#, fuzzy msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." -msgstr "Poate fi aproximativ. Vezi [doc@faq3-11]FAQ 3.11[/doc]." +msgstr "Poate fi aproximativ. Vezi [doc@faq3-11]Întrebări frecvente 3.11[/doc]." #: libraries/classes/Display/Results.php:4543 -#, fuzzy, php-format +#, php-format msgid "Showing rows %1s - %2s" -msgstr "Afișează înregistrările %1s - %2s" +msgstr "Arăt rândurile %1s - %2s" #: libraries/classes/Display/Results.php:4558 -#, fuzzy, php-format +#, php-format msgid "%1$d total, %2$d in query" msgstr "%1$d în total, %2$d în interogare" #: libraries/classes/Display/Results.php:4563 -#, fuzzy, php-format +#, php-format msgid "%d total" -msgstr "total de %d" +msgstr "Total %d" #: libraries/classes/Display/Results.php:4575 libraries/classes/Sql.php:1412 -#, fuzzy, php-format +#, php-format msgid "Query took %01.4f seconds." msgstr "Interogarea a durat %01.4f secunde." @@ -8749,9 +7286,8 @@ msgstr "Interogarea a durat %01.4f secunde." #: templates/database/structure/check_all_tables.twig:2 #: templates/database/structure/check_all_tables.twig:9 #: templates/select_all.twig:2 templates/select_all.twig:6 -#, fuzzy msgid "With selected:" -msgstr "Cele bifate:" +msgstr "Cu cele selectate:" #: libraries/classes/Display/Results.php:4678 #: libraries/classes/Display/Results.php:4680 @@ -8762,70 +7298,62 @@ msgstr "Cele bifate:" #: templates/database/structure/check_all_tables.twig:4 #: templates/privileges/global_priv_table.twig:5 templates/select_all.twig:4 #: templates/select_all.twig:5 -#, fuzzy -#| msgid "Check All" msgid "Check all" -msgstr "Marchează toate" +msgstr "Bifează tot" #: libraries/classes/Display/Results.php:4851 -#, fuzzy msgid "Copy to clipboard" msgstr "Copiază în clipboard" #: libraries/classes/Display/Results.php:4902 -#, fuzzy msgid "Query results operations" -msgstr "Operațiuni asupra rezultatelor interogării" +msgstr "Operații rezultate interogări" #: libraries/classes/Display/Results.php:4986 #: templates/table/chart/tbl_chart.twig:10 -#, fuzzy msgid "Display chart" -msgstr "Arată diagramă" +msgstr "Afișează diagrama" #: libraries/classes/Display/Results.php:5007 -#, fuzzy msgid "Visualize GIS data" -msgstr "Vizualizarea datelor GIS" +msgstr "Vizualizează datelor GIS" #: libraries/classes/Display/Results.php:5189 -#, fuzzy msgid "Link not found!" -msgstr "Link-ul nu a fost găsit!" +msgstr "Legătură negăsită!" #: libraries/classes/Engines/Bdb.php:28 -#, fuzzy msgid "Version information" msgstr "Informații despre versiune" #: libraries/classes/Engines/Innodb.php:29 -#, fuzzy msgid "Data home directory" -msgstr "Directorul de bază pentru date" +msgstr "Director de date la bază" #: libraries/classes/Engines/Innodb.php:31 msgid "The common part of the directory path for all InnoDB data files." msgstr "" +"Partea comună a căii directorilor pentru toate fișierele de date InnoDB." #: libraries/classes/Engines/Innodb.php:36 -#, fuzzy msgid "Data files" msgstr "Fișiere cu date" #: libraries/classes/Engines/Innodb.php:39 -#, fuzzy msgid "Autoextend increment" -msgstr "Auto-extinde incrementarea" +msgstr "Extinde automat incrementarea" #: libraries/classes/Engines/Innodb.php:41 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" +"Dimensiunea incrementării pentru extinderea dimensiunii unui spațiu de tabel " +"cu extindere automată atunci când se umple." #: libraries/classes/Engines/Innodb.php:47 msgid "Buffer pool size" -msgstr "" +msgstr "Dimensiune Buffer pool" #: libraries/classes/Engines/Innodb.php:49 msgid "" @@ -8834,167 +7362,143 @@ msgid "" msgstr "" #: libraries/classes/Engines/Innodb.php:139 -#, fuzzy msgid "Buffer Pool" -msgstr "Zonă Tampon" +msgstr "Buffer Pool" #: libraries/classes/Engines/Innodb.php:140 #: libraries/classes/Server/Status/Data.php:195 -#, fuzzy msgid "InnoDB Status" msgstr "Stare InnoDB" #: libraries/classes/Engines/Innodb.php:164 msgid "Buffer Pool Usage" -msgstr "" +msgstr "Folosire Buffer Pool" #: libraries/classes/Engines/Innodb.php:175 -#, fuzzy msgid "pages" msgstr "pagini" #: libraries/classes/Engines/Innodb.php:189 -#, fuzzy msgid "Free pages" msgstr "Pagini libere" #: libraries/classes/Engines/Innodb.php:198 -#, fuzzy msgid "Dirty pages" msgstr "Pagini murdare" #: libraries/classes/Engines/Innodb.php:207 -#, fuzzy msgid "Pages containing data" -msgstr "Pagini ce conțin date" +msgstr "Pagini care conțin date" #: libraries/classes/Engines/Innodb.php:216 -#, fuzzy msgid "Pages to be flushed" -msgstr "Pagini de golit" +msgstr "Pagini care trebuie golite" #: libraries/classes/Engines/Innodb.php:225 -#, fuzzy msgid "Busy pages" msgstr "Pagini ocupate" #: libraries/classes/Engines/Innodb.php:237 msgid "Latched pages" -msgstr "" +msgstr "Pagini închise" #: libraries/classes/Engines/Innodb.php:251 msgid "Buffer Pool Activity" -msgstr "" +msgstr "Activitate Buffer Pool" #: libraries/classes/Engines/Innodb.php:255 -#, fuzzy msgid "Read requests" msgstr "Cereri de citire" #: libraries/classes/Engines/Innodb.php:264 -#, fuzzy msgid "Write requests" msgstr "Cereri de scriere" #: libraries/classes/Engines/Innodb.php:273 -#, fuzzy msgid "Read misses" -msgstr "Citiri gresite" +msgstr "Neînțelegeri de citire" #: libraries/classes/Engines/Innodb.php:282 -#, fuzzy msgid "Write waits" -msgstr "Scrierea așteaptă" +msgstr "Întârzieri de scriere" #: libraries/classes/Engines/Innodb.php:291 msgid "Read misses in %" -msgstr "" +msgstr "Neînțelegeri de citire în %" #: libraries/classes/Engines/Innodb.php:306 -#, fuzzy msgid "Write waits in %" -msgstr "Scrierea așteaptă în %" +msgstr "Întârzieri de scriere în %" #: libraries/classes/Engines/Myisam.php:28 -#, fuzzy msgid "Data pointer size" -msgstr "Mărime pointer date" +msgstr "Dimensiune indicator de date" #: libraries/classes/Engines/Myisam.php:30 -#, fuzzy msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -"Mărimea pointerului implicit (în octeți), care este folosit de CREATE TABLE " -"pentru tabelele MyISAM atunci cînd nu este specificată nici o opțiune " +"Dimensiune implicită indicator, în octeți, care să fie folosită de CREEAZĂ " +"TABEL pentru tabelele MyISAM când nu este specificată nici o opțiune " "MAX_ROWS." #: libraries/classes/Engines/Myisam.php:36 -#, fuzzy msgid "Automatic recovery mode" -msgstr "Regim de recuperare automată" +msgstr "Mod recuperare automată" #: libraries/classes/Engines/Myisam.php:38 -#, fuzzy msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -"Regimul de recuperare automată a tabelelor MyISAM deteriorate, stabilit prin " -"opțiunea startup --myisam-recover server." +"Modul pentru recuperarea automată a tabelelor MyISAM deteriorate, așa cum " +"este setat prin opțiunea de pornire a serverului --myisam-recover." #: libraries/classes/Engines/Myisam.php:43 -#, fuzzy msgid "Maximum size for temporary sort files" -msgstr "Mărimea maximă pentru fișierele de sortare temporare" +msgstr "Dimensiune maximă pentru fișiere de sortare temporare" #: libraries/classes/Engines/Myisam.php:45 -#, fuzzy msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -"Mărimea maximă pentru fișierul temporar, permisă în MySQL în timpul " -"recreării unui index MyISAM (în timpul operațiunilor REPAIR TABLE, ALTER " -"TABLE, sau LOAD DATA INFILE)." +"Dimensiunea maximă a fișierului temporar MySQL care este permisă să se " +"utilizeze în timpul recreării unui index MyISAM (în timpul operațiilor " +"REPARĂ TABELUL, MODIFICĂ TABELUL sau ÎNCARCĂ DATE ÎN FIȘIER)." #: libraries/classes/Engines/Myisam.php:52 -#, fuzzy msgid "Maximum size for temporary files on index creation" -msgstr "Mărimea maximă pentru fișierele temporare la crearea indexului" +msgstr "Dimensiune maximă pentru fișiere temporare la crearea indexului" #: libraries/classes/Engines/Myisam.php:54 -#, fuzzy msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -"Dacă fișierul temporar utilizat pentru crearea rapidă a indexului MyISAM ar " -"fi mai mare decît dacă s-ar utiliza cache-ul de chei. Se preferă utilizarea " -"metodei „cache chei”." +"Dacă fișierul temporar utilizat pentru crearea rapidă a indexului MyISAM " +"este mai mare decât utilizarea cache-ului cheie prin suma specificată aici, " +"se preferă metoda cache cheie." #: libraries/classes/Engines/Myisam.php:61 -#, fuzzy msgid "Repair threads" msgstr "Repară firele de execuție" #: libraries/classes/Engines/Myisam.php:63 -#, fuzzy msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -"Dacă această valoare este mai mare decît 1, indexurile de tabel MyISAM sînt " -"create în paralel (fiecare index în firul de execuție propriu) în tipul " -"operațiunii de reparare prin procesul de sortare." +"Dacă această valoare este mai mare decât 1, indexurile tabelului MyISAM sunt " +"create în paralel (fiecare index în firul său de execuție) în timpul " +"reparării prin procesul de sortare." #: libraries/classes/Engines/Myisam.php:70 -#, fuzzy msgid "Sort buffer size" -msgstr "Sortare Mărime tampon" +msgstr "Sortează dimensiune tampon" #: libraries/classes/Engines/Myisam.php:72 #, fuzzy @@ -9006,113 +7510,100 @@ msgstr "" "REPAIR TABLE sau la crearea indexurilor cu CREATE INDEX sau ALTER TABLE." #: libraries/classes/Engines/Pbxt.php:30 -#, fuzzy msgid "Index cache size" msgstr "Dimensiune cache index" #: libraries/classes/Engines/Pbxt.php:32 -#, fuzzy msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -"Aceasta este memoria alocată cache-ului pentru index. Valoarea default este " -"32MB. Memoria alocată aici este folosită doar pentru cache-uirea paginilor " -"index." +"Aceasta este memoria alocată cache-ului de index. Valoarea implicită este de " +"32 MO. Memoria alocată aici este folosită numai pentru a memora în cache " +"paginile index." #: libraries/classes/Engines/Pbxt.php:39 -#, fuzzy msgid "Record cache size" -msgstr "Dimensiune cache înregistrare" +msgstr "Dimensiune cache înregistrări" #: libraries/classes/Engines/Pbxt.php:41 -#, fuzzy msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -"Aceasta este memoria alocată cache-ului pentru înregistrări folosit pentru a " -"cache-ui date tabelare. Valoarea default este 32MB. Memoria alocată aici " -"este folosită pentru cache-uirea schimbărilor la datele de manipulare (.xtd) " -"și fișierele row pointer (.xtr)." +"Aceasta este memoria alocată cache-ului de înregistrări folosit pentru a " +"memora în cache datele tabelului. Valoarea implicită este de 32 MO. Această " +"memorie este folosită pentru a memora în cache modificările la datele " +"gestionate (.xtd) și fișierele (.xtr) care indică rândul." #: libraries/classes/Engines/Pbxt.php:49 -#, fuzzy msgid "Log cache size" msgstr "Dimensiune cache jurnal" #: libraries/classes/Engines/Pbxt.php:51 -#, fuzzy msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -"Cantitatea de memorie alocată pentru cache-ul jurnalului tranzacției, " -"utilizat pentru a depozita datele jurnalului. Implicit este 16MO." +"Memoria alocată pentru cache-ul jurnalului de tranzacții folosită pentru a " +"memora în cache datele din jurnalul de tranzacții. Valoarea implicită este " +"de 16 MO." #: libraries/classes/Engines/Pbxt.php:58 -#, fuzzy msgid "Log file threshold" -msgstr "Prag fișiere-jurnal" +msgstr "Prag fișier jurnal" #: libraries/classes/Engines/Pbxt.php:60 -#, fuzzy msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -"Dimensiunea unui log de tranzacții înainte de rollover și un nou log este " -"creat. Valoarea implicită este de 16MB." +"Dimensiunea unui jurnal de tranzacții înainte de raportare și de crearea " +"unui nou jurnal. Valoarea implicită este de 16 MO." #: libraries/classes/Engines/Pbxt.php:66 -#, fuzzy msgid "Transaction buffer size" -msgstr "Dimensiune tampon tranzacție" +msgstr "Dimensiune tampon tranzacții" #: libraries/classes/Engines/Pbxt.php:68 -#, fuzzy msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -"Dimensiunea tamponului global pentru jurnale de tranzacții (engine-ul alocă " -"2 tampoane de această dimensiune).Implicit este de 1MB." +"Dimensiunea tamponului global pentru jurnalul de tranzacții (motorul alocă 2 " +"tampoane de această dimensiune). Valoarea implicită este de 1 MO." #: libraries/classes/Engines/Pbxt.php:75 -#, fuzzy msgid "Checkpoint frequency" -msgstr "Frecvența punctelor de control" +msgstr "Frecvență puncte de control" #: libraries/classes/Engines/Pbxt.php:77 -#, fuzzy msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -"Mărimea datelor scrise în jurnalul tranzacțiilor înaintea efectuării unei " -"verificări. Mărimea implicită este 24MO." +"Cantitatea de date înscrisă în jurnalul de tranzacții înainte de trecerea " +"unui punct de control. Valoarea implicită este de 24 MO." #: libraries/classes/Engines/Pbxt.php:84 -#, fuzzy msgid "Data log threshold" -msgstr "Prag pentru jurnalul de date" +msgstr "Prag jurnal de date" #: libraries/classes/Engines/Pbxt.php:86 -#, fuzzy msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " "value of this variable can be increased to increase the total amount of data " "that can be stored in the database." msgstr "" -"Mărimea maximă a unui fișier jurnal de date. Valoarea implicită este 64MB. " -"PBXT poate crea maxim 32000 de jurnale de date, care sunt folosite de toate " -"tabelele. Prin urmare, valoarea acestei variabile poate fi marită pentru a " -"mări cantitatea totală de date care pot fi stocate în baza de date." +"Dimensiunea maximă a unui fișier jurnal de date. Valoarea implicită este de " +"64 MO. PBXT poate crea maxim de 32.000 de jurnale de date, care sunt " +"folosite de toate tabelele. Deci valoarea acestei variabile poate fi mărită " +"pentru a crește cantitatea totală de date care poate fi stocată în baza de " +"date." #: libraries/classes/Engines/Pbxt.php:95 -#, fuzzy msgid "Garbage threshold" msgstr "Prag gunoi" @@ -9121,9 +7612,10 @@ msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" +"Procentul gunoiului într-un fișier jurnal de date înainte de a fi compactat. " +"Este o valoare cuprinsă între 1 și 99. Valoarea implicită este 50." #: libraries/classes/Engines/Pbxt.php:104 -#, fuzzy msgid "Log buffer size" msgstr "Dimensiune tampon jurnal" @@ -9133,27 +7625,29 @@ msgid "" "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" +"Dimensiunea tamponului folosit la scrierea unui jurnal de date. Valoarea " +"implicită este de 256 MO. Motorul alocă un tampon per fir de execuție, dar " +"numai dacă firul este necesar pentru a scrie un jurnal de date." #: libraries/classes/Engines/Pbxt.php:114 msgid "Data file grow size" -msgstr "" +msgstr "Dimensiune creștere fișier de date" #: libraries/classes/Engines/Pbxt.php:115 msgid "The grow size of the handle data (.xtd) files." -msgstr "" +msgstr "Dimensiunea de creștere a fișierelor de date (.xtd) gestionate." #: libraries/classes/Engines/Pbxt.php:119 msgid "Row file grow size" -msgstr "" +msgstr "Dimensiune creștere fișier de rânduri" #: libraries/classes/Engines/Pbxt.php:120 msgid "The grow size of the row pointer (.xtr) files." -msgstr "" +msgstr "Dimensiunea de creștere a fișierelor care indică rânduri (.xtr)." #: libraries/classes/Engines/Pbxt.php:124 -#, fuzzy msgid "Log file count" -msgstr "Număr de fișiere-jurnal" +msgstr "Număr fișiere jurnal" #: libraries/classes/Engines/Pbxt.php:126 msgid "" @@ -9162,6 +7656,10 @@ msgid "" "will be deleted, otherwise they are renamed and given the next highest " "number." msgstr "" +"Acesta este numărul de fișiere jurnal de tranzacții (pbxt/system/xlog*.xt) " +"pe care sistemul îl va menține. Dacă numărul de jurnale depășește această " +"valoare jurnalele vechi vor fi șterse, altfel ele sunt redenumite și li se " +"dă numărul următor cel mai mare." #: libraries/classes/Engines/Pbxt.php:182 #, php-format @@ -9169,186 +7667,167 @@ msgid "" "Documentation and further information about PBXT can be found on the " "%sPrimeBase XT Home Page%s." msgstr "" +"Documentația și alte informații despre PBXT pot fi găsite pe %sPrimeBase XT " +"Home Page%s." #: libraries/classes/ErrorHandler.php:78 -#, fuzzy msgid "Too many error messages, some are not displayed." msgstr "Prea multe mesaje de eroare, unele nu sunt afișate." #: libraries/classes/ErrorHandler.php:360 -#, fuzzy msgid "Report" msgstr "Raport" #: libraries/classes/ErrorHandler.php:365 templates/error/report_form.twig:25 -#, fuzzy msgid "Automatically send report next time" msgstr "Trimite automat raportul data viitoare" #: libraries/classes/Export.php:132 libraries/classes/Export.php:167 #: libraries/classes/Export.php:394 -#, fuzzy, php-format +#, php-format msgid "Insufficient space to save the file %s." -msgstr "Spațiu insuficient pentru salvarea fișierului %s." +msgstr "Spațiu insuficient pentru a salva fișierul %s." #: libraries/classes/Export.php:350 -#, fuzzy, php-format +#, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -"Fișierul %s există deja pe server. Schimbați denumirea fișierului sau bifați " -"opțiunea de suprascriere." +"Fișierul %s există deja pe server, schimbă-i numele sau verifică opțiunea de " +"a-l suprascrie." #: libraries/classes/Export.php:358 libraries/classes/Export.php:366 -#, fuzzy, php-format +#, php-format msgid "The web server does not have permission to save the file %s." -msgstr "Serverul web nu are drepturile necesare pentru a salva fișierul %s." +msgstr "Serverul web nu are permisiunea de a salva fișierul %s." #: libraries/classes/Export.php:400 -#, fuzzy, php-format +#, php-format msgid "Dump has been saved to file %s." -msgstr "Copia a fost salvată în fișierul %s." +msgstr "Dump-ul a fost salvat în fișierul %s." #: libraries/classes/File.php:247 -#, fuzzy msgid "File was not an uploaded file." -msgstr "Fișierul nu a fost un fișier încărcat." +msgstr "Fișierul nu era un fișier încărcat." #: libraries/classes/File.php:287 -#, fuzzy msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "Fișierul încărcat depășește condiția upload_max_filesize din php.ini." +msgstr "" +"Fișierul încărcat depășește instrucțiunea upload_max_filesize din php.ini." #: libraries/classes/File.php:293 -#, fuzzy msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -"Fișierul încărcat depășește directiva MAX_FILE_SIZE specificată în " -"formularul HTML." +"Fișierul încărcat depășește instrucțiunea MAX_FILE_SIZE care a fost " +"specificată în formularul HTML." #: libraries/classes/File.php:299 -#, fuzzy msgid "The uploaded file was only partially uploaded." -msgstr "Fișierul a fost încărcat numai parțial." +msgstr "Fișierul încărcat a fost încărcat numai parțial." #: libraries/classes/File.php:303 -#, fuzzy msgid "Missing a temporary folder." msgstr "Lipsește un dosar temporar." #: libraries/classes/File.php:306 -#, fuzzy msgid "Failed to write file to disk." -msgstr "Eșec la scrierea fișierului pe disc." +msgstr "Scrierea fișierului pe disc a eșuat." #: libraries/classes/File.php:309 -#, fuzzy msgid "File upload stopped by extension." -msgstr "Încărcarea fișierului a fost împiedicată de extensie." +msgstr "Încărcarea fișierului a fost oprită de o extensie." #: libraries/classes/File.php:312 -#, fuzzy msgid "Unknown error in file upload." -msgstr "Eroare necunoscută la încărcarea fișierului." +msgstr "Eroare necunoscută în încărcarea fișierului." #: libraries/classes/File.php:448 -#, fuzzy msgid "File is a symbolic link" -msgstr "Fişierul este o legătură simbolică" +msgstr "Fișierul este o legătură simbolică" #: libraries/classes/File.php:453 libraries/classes/File.php:545 -#, fuzzy msgid "File could not be read!" -msgstr "Fișierul nu poate fi citit!" +msgstr "Fișierul nu a putut fi citit!" #: libraries/classes/File.php:493 -#, fuzzy msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -"Eroare la mutarea fișierului încărcat, vezi [doc@faq1-11]FAQ 1.11[/doc]." +"Eroare la mutarea fișierului încărcat, vezi [doc@faq1-11]Întrebări frecvente " +"1.11[/doc]." #: libraries/classes/File.php:512 -#, fuzzy msgid "Error while moving uploaded file." -msgstr "Eroare la mutarea fișierului încărcat." +msgstr "Eroare în timpul mutării fișierului încărcat." #: libraries/classes/File.php:520 -#, fuzzy -#| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." -msgstr "Nu se poate citi fișierul încărcat (și mutat)." +msgstr "Nu pot citi fișierul încărcat." #: libraries/classes/File.php:600 -#, fuzzy, php-format +#, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -"Ați încercat să încărcați un fișier cu compresie nesuportată (%s). Fie " -"suportul pentru aceasta nu este implementat, fie este dezactivat de " -"configurația dumneavoastră." +"Ai încercat să încarci un fișier cu o compresie nesuportată (%s). Fie " +"suportul pentru aceasta compresie nu este implementat, ori fie este " +"dezactivată de configurarea ta." #: libraries/classes/Footer.php:79 -#, fuzzy, php-format +#, php-format msgid "Currently running Git revision %1$s from the %2$s branch." -msgstr "În prezent se rulează Git revizuirea %1$s din ramura %2$s." +msgstr "În prezent se rulează revizia Git %1$s din ramura %2$s." #: libraries/classes/Footer.php:86 -#, fuzzy msgid "Git information missing!" -msgstr "Informațiile despe Git lipsesc!" +msgstr "Informațiile despre Git lipsesc!" #: libraries/classes/Footer.php:201 libraries/classes/Footer.php:205 #: libraries/classes/Footer.php:208 -#, fuzzy msgid "Open new phpMyAdmin window" msgstr "Deschide fereastră phpMyAdmin nouă" #: libraries/classes/Header.php:382 -#, fuzzy msgid "Print view" msgstr "Vizualizare imprimare" #: libraries/classes/Header.php:460 -#, fuzzy msgid "Click on the bar to scroll to top of page" -msgstr "Faceţi click pe bară pentru a defila la partea de sus a paginii" +msgstr "Dă clic pe bară pentru a derula în partea de sus a paginii" #: libraries/classes/Header.php:767 templates/login/header.twig:8 -#, fuzzy msgid "Javascript must be enabled past this point!" -msgstr "Trebuie să aveți activat Javascript!" +msgstr "Javascript trebuie să fie activat peste acest punct!" #: libraries/classes/Import.php:130 libraries/classes/InsertEdit.php:172 #: libraries/classes/Rte/Routines.php:1483 libraries/classes/Sql.php:1406 #: tbl_get_field.php:50 -#, fuzzy msgid "MySQL returned an empty result set (i.e. zero rows)." -msgstr "MySQL a dat un set de rezultate gol (zero linii)." +msgstr "MySQL a returnat un set de rezultate gol (adică zero rânduri)." #: libraries/classes/Import.php:290 libraries/classes/Sql.php:1420 msgid "[ROLLBACK occurred.]" -msgstr "" +msgstr "[ROLLBACK s-a făcut.]" #: libraries/classes/Import.php:1209 msgid "" "The following structures have either been created or altered. Here you can:" -msgstr "" +msgstr "Structurile următoare fie au fost create ori fie modificate. Aici poți:" #: libraries/classes/Import.php:1212 msgid "View a structure's contents by clicking on its name." -msgstr "" +msgstr "Vezi conținutul unei structuri dând clic pe numele ei." #: libraries/classes/Import.php:1215 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." -msgstr "" +msgstr "Modifică orice setare dând clic pe legătura corespondentă „Opțiuni”." #: libraries/classes/Import.php:1217 msgid "Edit structure by following the \"Structure\" link." -msgstr "" +msgstr "Editează structura urmărind legătura „Structură”." #: libraries/classes/Import.php:1221 libraries/classes/Import.php:1256 #: libraries/classes/MultSubmits.php:356 @@ -9378,67 +7857,64 @@ msgstr "" #: templates/console/display.twig:7 templates/console/display.twig:140 #: templates/table/search/options.twig:1 #: templates/display/results/options_block.twig:10 -#, fuzzy msgid "Options" msgstr "Opțiuni" #: libraries/classes/Import.php:1224 -#, fuzzy, php-format +#, php-format msgid "Go to database: %s" -msgstr "Nu sînt baze de date" +msgstr "Du-te la baza de date: %s" #: libraries/classes/Import.php:1230 libraries/classes/Import.php:1274 #, php-format msgid "Edit settings for %s" -msgstr "" +msgstr "Editează setările pentru %s" #: libraries/classes/Import.php:1259 -#, fuzzy, php-format +#, php-format msgid "Go to table: %s" -msgstr "Nu sînt baze de date" +msgstr "Du-te la tabelul: %s" #: libraries/classes/Import.php:1267 -#, fuzzy, php-format -#| msgid "Structure only" +#, php-format msgid "Structure of %s" -msgstr "Numai structura" +msgstr "Structura %s" #: libraries/classes/Import.php:1285 -#, fuzzy, php-format -#| msgid "Export views" +#, php-format msgid "Go to view: %s" -msgstr "Modul de export" +msgstr "Du-te la vizualizarea: %s" #: libraries/classes/Import.php:1345 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" +"Pot fi simulate numai interogările ACTUALIZEAZĂ și ȘTERGE pentru tabele " +"singulare." #: libraries/classes/Import.php:1568 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." msgstr "" +"Numai interogările SQL INSEREAZĂ, ACTUALIZEAZĂ, ȘTERGE și ÎNLOCUIEȘTE care " +"conțin tabele de motoare tranzacționale pot fi derulate înapoi." #: libraries/classes/Index.php:658 -#, fuzzy, php-format -#| msgid "Create an index on %s columns" +#, php-format msgid "Create an index on  %s columns" -msgstr "Creează un index pe %s coloană" +msgstr "Creează un index pe coloanele %s" #: libraries/classes/Index.php:690 -#, fuzzy msgid "No index defined!" -msgstr "Index nu este definit!" +msgstr "Niciun index definit!" #: libraries/classes/Index.php:722 #: templates/table/tracking/structure_snapshot_indexes.twig:8 -#, fuzzy msgid "Packed" msgstr "Împachetat" #: libraries/classes/Index.php:724 #: templates/table/tracking/structure_snapshot_indexes.twig:10 -#, fuzzy msgid "Cardinality" msgstr "Cardinalitate" @@ -9449,31 +7925,28 @@ msgstr "Cardinalitate" #: templates/table/structure/display_partitions.twig:31 #: templates/table/tracking/structure_snapshot_indexes.twig:13 #: templates/table/tracking/structure_snapshot_columns.twig:12 -#, fuzzy msgid "Comment" msgstr "Comentariu" #: libraries/classes/Index.php:753 -#, fuzzy msgid "The primary key has been dropped." -msgstr "Cheia primară a fost aruncată." +msgstr "Cheia principală a fost eliminată." #: libraries/classes/Index.php:760 -#, fuzzy, php-format +#, php-format msgid "Index %s has been dropped." -msgstr "Indexul %s a fost aruncat." +msgstr "Indexul %s a fost eliminat." #: libraries/classes/Index.php:890 -#, fuzzy, php-format +#, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." -msgstr "Indecșii %1$s și %2$s par a fi egali și unul din ei poate fi șters." +msgstr "Indexurile %1$s și %2$s par să fie egale și unul ar putea fi înlăturat." #: libraries/classes/InsertEdit.php:284 #: libraries/classes/Navigation/Nodes/NodeDatabaseChild.php:54 #: templates/database/designer/table_list.twig:34 -#, fuzzy msgid "Hide" msgstr "Ascunde" @@ -9481,99 +7954,79 @@ msgstr "Ascunde" #: libraries/classes/Navigation/Nodes/NodeFunction.php:30 #: libraries/classes/Rte/Routines.php:1623 #: templates/table/search/table_header.twig:4 -#, fuzzy msgid "Function" msgstr "Funcție" #: libraries/classes/InsertEdit.php:464 -#, fuzzy msgid "Binary" msgstr "Binar" #: libraries/classes/InsertEdit.php:724 -#, fuzzy -#| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable." msgstr "" -"Datorită lungimii sale,
acest câmp s-ar putea să nu fie editabil" +"Datorită lungimii sale,
probabil această coloană nu poată fi editată." #: libraries/classes/InsertEdit.php:1331 -#, fuzzy msgid "Binary - do not edit" -msgstr "Binar - a nu se edita" +msgstr "Binar - nu edita" #: libraries/classes/InsertEdit.php:1491 libraries/classes/Util.php:3283 -#, fuzzy msgid "The directory you set for upload work cannot be reached." -msgstr "Directorul stabilit pentru încărcare nu poate fi găsit." +msgstr "Directorul pe care l-ai setat pentru încărcare nu poate fi găsit." #: libraries/classes/InsertEdit.php:1494 #: templates/privileges/column_privileges.twig:17 #: templates/table/search/options.twig:25 -#, fuzzy msgid "Or" msgstr "Sau" #: libraries/classes/InsertEdit.php:1495 -#, fuzzy -#| msgid "web server upload directory" msgid "web server upload directory:" -msgstr "director de încărcare al serverului Web" +msgstr "director încărcare pe server web:" #: libraries/classes/InsertEdit.php:1700 #: templates/table/search/input_box.twig:39 -#, fuzzy msgid "Edit/Insert" -msgstr "Editare/Inserare" +msgstr "Editează/inserează" #: libraries/classes/InsertEdit.php:1767 -#, fuzzy msgid "and then" msgstr "și apoi" #: libraries/classes/InsertEdit.php:1805 -#, fuzzy msgid "Insert as new row" -msgstr "Inserează ca o nouă linie" +msgstr "Inserează ca rând nou" #: libraries/classes/InsertEdit.php:1808 msgid "Insert as new row and ignore errors" -msgstr "" +msgstr "Inserează ca rând nou și ignoră erorile" #: libraries/classes/InsertEdit.php:1811 -#, fuzzy msgid "Show insert query" -msgstr "Afișare interogare SQL" +msgstr "Arată interogarea inserată" #: libraries/classes/InsertEdit.php:1831 -#, fuzzy msgid "Go back to previous page" -msgstr "Revenire" +msgstr "Mergi înapoi la pagina anterioară" #: libraries/classes/InsertEdit.php:1834 -#, fuzzy msgid "Insert another new row" -msgstr "Adaugă o nouă înregistrare" +msgstr "Inserează un alt rând nou" #: libraries/classes/InsertEdit.php:1839 -#, fuzzy msgid "Go back to this page" -msgstr "Înapoi la această pagină" +msgstr "Mergi înapoi la acestă pagină" #: libraries/classes/InsertEdit.php:1862 -#, fuzzy msgid "Edit next row" msgstr "Editează rândul următor" #: libraries/classes/InsertEdit.php:1882 -#, fuzzy -#| msgid "" -#| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -"Folosiți tasta TAB pentru a trece de la o valoare la alta sau CTRL+săgeți " -"pentru a merge în oricare direcție" +"Folosește tasta TAB pentru a trece de la o valoare la alta sau CTRL+săgeți " +"pentru a merge oriunde." #: libraries/classes/InsertEdit.php:1920 #: libraries/classes/ReplicationGui.php:556 @@ -9586,40 +8039,36 @@ msgstr "" #: templates/table/search/zoom_result_form.twig:36 #: templates/database/designer/options_panel.twig:73 #: templates/database/designer/options_panel.twig:239 -#, fuzzy msgid "Value" msgstr "Valoare" #: libraries/classes/InsertEdit.php:2290 libraries/classes/Sql.php:1403 -#, fuzzy msgid "Showing SQL query" -msgstr "Afișare interogare SQL" +msgstr "Arăt interogarea SQL" #: libraries/classes/InsertEdit.php:2315 libraries/classes/Sql.php:1381 -#, fuzzy, php-format +#, php-format msgid "Inserted row id: %1$d" msgstr "ID rând inserat: %1$d" #: libraries/classes/LanguageManager.php:908 msgid "Ignoring unsupported language code." -msgstr "" +msgstr "Ignor codul de limbă neacceptat." #: libraries/classes/LanguageManager.php:935 #: libraries/classes/LanguageManager.php:936 setup/frames/index.inc.php:63 -#, fuzzy msgid "Language" msgstr "Limbă" #: libraries/classes/Linter.php:98 -#, fuzzy msgid "" "Linting is disabled for this query because it exceeds the maximum length." msgstr "" -"Atomizarea este dezactivată deoarece interogarea excede lungimea maximă " -"acceptată." +"Verificarea codului sursă pentru această interogare este dezactivată " +"deoarece depășește lungimea maximă." #: libraries/classes/Linter.php:164 -#, fuzzy, php-format +#, php-format msgid "%1$s (near %2$s)" msgstr "%1$s (lângă %2$s)" @@ -9628,14 +8077,13 @@ msgstr "%1$s (lângă %2$s)" #: tbl_operations.php:224 tbl_structure.php:36 #: templates/database/structure/structure_table_row.twig:98 #: templates/database/structure/structure_table_row.twig:163 -#, fuzzy msgid "View" -msgstr "Vizualizare" +msgstr "Vezi" #: libraries/classes/Menu.php:290 libraries/classes/Menu.php:309 #, php-format msgid "“%s”" -msgstr "" +msgstr "„%s”" #: libraries/classes/Menu.php:344 #: libraries/classes/Navigation/Nodes/NodeTable.php:300 @@ -9645,9 +8093,8 @@ msgstr "" #: libraries/config.values.php:50 libraries/config.values.php:120 #: templates/table/structure/check_all_table_column.twig:8 #: templates/database/search/results.twig:34 -#, fuzzy msgid "Browse" -msgstr "Navigare" +msgstr "Răsfoiește" #: libraries/classes/Menu.php:361 libraries/classes/Menu.php:464 #: libraries/classes/Navigation/Nodes/NodeTable.php:291 @@ -9657,7 +8104,6 @@ msgstr "Navigare" #: libraries/classes/Util.php:3991 libraries/config.values.php:40 #: libraries/config.values.php:48 libraries/config.values.php:112 #: libraries/config.values.php:118 -#, fuzzy msgid "Search" msgstr "Caută" @@ -9669,9 +8115,8 @@ msgstr "Caută" #: libraries/classes/Util.php:3315 libraries/classes/Util.php:3992 #: libraries/config.values.php:41 libraries/config.values.php:49 #: libraries/config.values.php:119 -#, fuzzy msgid "Insert" -msgstr "Inserare" +msgstr "Inserează" #: libraries/classes/Menu.php:395 libraries/classes/Menu.php:499 #: libraries/classes/Server/Privileges.php:2565 @@ -9679,23 +8124,20 @@ msgstr "Inserare" #: libraries/classes/Util.php:3995 libraries/config.values.php:107 #: templates/server/sub_page_header.twig:2 #: templates/privileges/privileges_summary.twig:15 -#, fuzzy msgid "Privileges" -msgstr "Drepturi de acces" +msgstr "Privilegii" #: libraries/classes/Menu.php:404 libraries/classes/Menu.php:412 #: libraries/classes/Menu.php:491 libraries/classes/Util.php:3025 #: libraries/classes/Util.php:3039 libraries/classes/Util.php:3978 #: libraries/classes/Util.php:3996 libraries/config.values.php:113 #: view_operations.php:99 -#, fuzzy msgid "Operations" msgstr "Operații" #: libraries/classes/Menu.php:417 libraries/classes/Menu.php:521 #: libraries/classes/Relation.php:279 libraries/classes/Util.php:3983 #: libraries/classes/Util.php:3997 -#, fuzzy msgid "Tracking" msgstr "Urmărire" @@ -9709,24 +8151,20 @@ msgstr "Urmărire" #: libraries/classes/Plugins/Export/ExportXml.php:124 #: libraries/classes/Rte/Words.php:63 libraries/classes/Util.php:3982 #: libraries/classes/Util.php:3998 -#, fuzzy msgid "Triggers" msgstr "Declanșatori" #: libraries/classes/Menu.php:468 libraries/classes/Menu.php:475 #: libraries/classes/Menu.php:482 -#, fuzzy msgid "Database seems to be empty!" -msgstr "Baza de date pare a fi goală!" +msgstr "Baza de date pare să fie goală!" #: libraries/classes/Menu.php:471 libraries/classes/Util.php:3975 -#, fuzzy msgid "Query" -msgstr "Interogare prin exemplu" +msgstr "Interogare" #: libraries/classes/Menu.php:504 libraries/classes/Rte/Words.php:49 #: libraries/classes/Util.php:3980 -#, fuzzy msgid "Routines" msgstr "Rutine" @@ -9735,30 +8173,24 @@ msgstr "Rutine" #: libraries/classes/Plugins/Export/ExportSql.php:964 #: libraries/classes/Plugins/Export/ExportXml.php:104 #: libraries/classes/Rte/Words.php:77 libraries/classes/Util.php:3981 -#, fuzzy msgid "Events" msgstr "Evenimente" #: libraries/classes/Menu.php:527 libraries/classes/Util.php:3984 -#, fuzzy msgid "Designer" msgstr "Designer" #: libraries/classes/Menu.php:536 libraries/classes/Util.php:3985 #: templates/database/structure/check_all_tables.twig:32 -#, fuzzy msgid "Central columns" msgstr "Coloane centrale" #: libraries/classes/Menu.php:594 -#, fuzzy -#| msgid "Users" msgid "User accounts" -msgstr "Utilizatori" +msgstr "Conturi utilizator" #: libraries/classes/Menu.php:621 libraries/classes/Server/Status/Data.php:121 #: libraries/classes/Util.php:3964 templates/server/sub_page_header.twig:2 -#, fuzzy msgid "Binary log" msgstr "Jurnal binar" @@ -9774,77 +8206,67 @@ msgstr "Replicare" #: libraries/classes/SqlQueryForm.php:432 libraries/classes/Util.php:3966 #: libraries/config.values.php:106 templates/server/engines/engine.twig:12 #: templates/server/engines/engine.twig:16 -#, fuzzy msgid "Variables" msgstr "Variabile" #: libraries/classes/Menu.php:636 libraries/classes/Util.php:3967 -#, fuzzy msgid "Charsets" msgstr "Seturi de caractere" #: libraries/classes/Menu.php:640 libraries/classes/Util.php:3969 -#, fuzzy msgid "Engines" msgstr "Motoare" #: libraries/classes/Menu.php:644 libraries/classes/Util.php:3968 #: templates/server/sub_page_header.twig:2 -#, fuzzy msgid "Plugins" -msgstr "Extensii" +msgstr "Module" #: libraries/classes/Message.php:247 -#, fuzzy, php-format +#, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." -msgstr[0] "%1$d rânduri afectate." -msgstr[1] "%1$d rând afectat." -msgstr[2] "%1$d rânduri afectate." +msgstr[0] "Un rând afectat." +msgstr[1] "%1$d rânduri afectate." +msgstr[2] "%1$d de rânduri afectate." #: libraries/classes/Message.php:266 -#, fuzzy, php-format +#, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." -msgstr[0] "%1$d rânduri șterse." -msgstr[1] "%1$d rând șters." -msgstr[2] "%1$d rânduri șterse." +msgstr[0] "Un rând șters." +msgstr[1] "%1$d rânduri șterse." +msgstr[2] "%1$d de rânduri șterse." #: libraries/classes/Message.php:285 -#, fuzzy, php-format +#, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." -msgstr[0] "%1$d rânduri inserate." -msgstr[1] "%1$d rând inserat." -msgstr[2] "%1$d rânduri inserate." +msgstr[0] "Un rând inserat." +msgstr[1] "%1$d rânduri inserate." +msgstr[2] "%1$d de rânduri inserate." #: libraries/classes/MultSubmits.php:358 libraries/classes/Operations.php:182 #: libraries/classes/Operations.php:1266 libraries/classes/Tracking.php:393 -#, fuzzy msgid "Structure only" -msgstr "Numai structura" +msgstr "Numai structură" #: libraries/classes/MultSubmits.php:360 libraries/classes/Operations.php:183 #: libraries/classes/Operations.php:1267 libraries/classes/Tracking.php:399 -#, fuzzy msgid "Structure and data" -msgstr "Structura și date" +msgstr "Structură și date" #: libraries/classes/MultSubmits.php:362 libraries/classes/Operations.php:184 #: libraries/classes/Operations.php:1268 libraries/classes/Tracking.php:396 -#, fuzzy msgid "Data only" msgstr "Numai date" #: libraries/classes/MultSubmits.php:366 -#, fuzzy -#| msgid "Add AUTO_INCREMENT value" msgid "Add AUTO INCREMENT value" -msgstr "Adaugă valoare pentru AUTO_INCREMENT" +msgstr "Adaugă valoarea INCREMENTARE AUTOMATĂ" #: libraries/classes/MultSubmits.php:368 libraries/classes/Operations.php:232 #: libraries/classes/Operations.php:1291 -#, fuzzy msgid "Add constraints" msgstr "Adaugă constrângeri" @@ -9853,195 +8275,156 @@ msgstr "Adaugă constrângeri" #: libraries/classes/Operations.php:956 libraries/classes/Operations.php:1310 #: libraries/classes/Rte/Routines.php:1024 #: templates/columns_definitions/table_fields_definitions.twig:36 -#, fuzzy -#| msgid "Edit Privileges" msgid "Adjust privileges" -msgstr "Editează drepturile de acces" +msgstr "Ajustează privilegiile" #: libraries/classes/MultSubmits.php:392 -#, fuzzy -#| msgid "Fri" msgid "From" -msgstr "Vin" +msgstr "De la" #: libraries/classes/MultSubmits.php:398 msgid "To" -msgstr "" +msgstr "La" #: libraries/classes/MultSubmits.php:426 msgid "Add prefix" -msgstr "" +msgstr "Adaugă prefix" #: libraries/classes/MultSubmits.php:459 -#, fuzzy -#| msgid "Do you really want to " msgid "Do you really want to execute the following query?" -msgstr "Sigur doriți să " +msgstr "Sigur vrei să execuți interogarea următoare?" #: libraries/classes/Navigation/Navigation.php:56 msgid "An error has occurred while loading the navigation display" -msgstr "" +msgstr "A apărut o eroare la încărcarea afișării de navigare" #: libraries/classes/Navigation/Navigation.php:194 -#, fuzzy -#| msgid "Column names" msgid "Groups:" -msgstr "Denumirile coloanelor" +msgstr "Grupuri:" #: libraries/classes/Navigation/Navigation.php:195 -#, fuzzy -#| msgid "Events" msgid "Events:" -msgstr "Evenimente" +msgstr "Evenimente:" #: libraries/classes/Navigation/Navigation.php:196 -#, fuzzy -#| msgid "Functions" msgid "Functions:" -msgstr "Funcții" +msgstr "Funcții:" #: libraries/classes/Navigation/Navigation.php:197 -#, fuzzy -#| msgid "Procedures" msgid "Procedures:" -msgstr "Proceduri" +msgstr "Proceduri:" #: libraries/classes/Navigation/Navigation.php:198 #: templates/display/export/selection.twig:5 -#, fuzzy -#| msgid "Tables" msgid "Tables:" -msgstr "Tabele" +msgstr "Tabele:" #: libraries/classes/Navigation/Navigation.php:199 -#, fuzzy -#| msgid "View" msgid "Views:" -msgstr "Vizualizare" +msgstr "Vizualizări:" #: libraries/classes/Navigation/Navigation.php:223 #: libraries/classes/Tracking.php:163 tbl_change.php:146 #: templates/database/tracking/tracked_tables.twig:17 #: templates/database/multi_table_query/form.twig:29 -#, fuzzy msgid "Show" msgstr "Arată" #: libraries/classes/Navigation/NavigationHeader.php:165 -#, fuzzy msgid "Home" -msgstr "Pagina de pornire" +msgstr "Prima pagină" #: libraries/classes/Navigation/NavigationHeader.php:173 -#, fuzzy msgid "Log out" -msgstr "Deconectare" +msgstr "Dezautentificare" #: libraries/classes/Navigation/NavigationHeader.php:175 -#, fuzzy -#| msgid "Dumping data for table" msgid "Empty session data" -msgstr "Salvarea datelor din tabel" +msgstr "Golește datele sesiunii" #: libraries/classes/Navigation/NavigationHeader.php:193 -#, fuzzy msgid "phpMyAdmin documentation" msgstr "Documentație phpMyAdmin" #: libraries/classes/Navigation/NavigationHeader.php:213 -#, fuzzy -#| msgid "Navigation panel" msgid "Navigation panel settings" -msgstr "Cadru de navigare" +msgstr "Setări panou navigare" #: libraries/classes/Navigation/NavigationHeader.php:224 -#, fuzzy msgid "Reload navigation panel" -msgstr "Personalizează cadrul principal" +msgstr "Reîncarcă panoul de navigare" #: libraries/classes/Navigation/NavigationTree.php:755 msgid "" "There are large item groups in navigation panel which may affect the " "performance. Consider disabling item grouping in the navigation panel." msgstr "" +"Există grupuri mari de elemente în panoul de navigare, care pot afecta " +"performanța. Ia în considerare dezactivarea grupării elementelor în panoul " +"de navigare." #: libraries/classes/Navigation/NavigationTree.php:949 #, php-format msgid "%s result found" msgid_plural "%s results found" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Un rezultat găsit" +msgstr[1] "%s rezultate găsite" +msgstr[2] "%s de rezultate găsite" #: libraries/classes/Navigation/NavigationTree.php:1366 #: libraries/classes/Navigation/NavigationTree.php:1398 msgid "Type to filter these, Enter to search all" -msgstr "" +msgstr "Tastează pentru a le filtra, apasă Enter pentru a căuta tot" #: libraries/classes/Navigation/NavigationTree.php:1368 #: libraries/classes/Navigation/NavigationTree.php:1399 -#, fuzzy -#| msgid "Save as file" msgid "Clear fast filter" -msgstr "Salvează ca fișier" +msgstr "Filtru rapid de curățare" #: libraries/classes/Navigation/NavigationTree.php:1425 msgid "Collapse all" -msgstr "" +msgstr "Restrânge tot" #. l10n: The word "Node" must not be translated here #: libraries/classes/Navigation/NodeFactory.php:34 #, php-format msgid "Invalid class name \"%1$s\", using default of \"Node\"" -msgstr "" +msgstr "Nume clasă invalid „%1$s”, folosind implicit „Node”" #: libraries/classes/Navigation/NodeFactory.php:61 -#, fuzzy, php-format -#| msgid "Could not add columns!" +#, php-format msgid "Could not load class \"%1$s\"" -msgstr "Nu s-au putut adăuga coloanele!" +msgstr "Nu am putut încărca clasa „%1$s”" #: libraries/classes/Navigation/Nodes/Node.php:796 msgid "Expand/Collapse" -msgstr "" +msgstr "Extinde/restrânge" #: libraries/classes/Navigation/Nodes/NodeColumnContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeColumnContainer.php:26 #: libraries/classes/SqlQueryForm.php:269 -#, fuzzy -#| msgid "Column names" msgid "Columns" -msgstr "Denumirile coloanelor" +msgstr "Coloane" #: libraries/classes/Navigation/Nodes/NodeColumnContainer.php:35 -#, fuzzy -#| msgid "New" msgctxt "Create new column" msgid "New" -msgstr "Nou" +msgstr "Nouă" #: libraries/classes/Navigation/Nodes/NodeDatabase.php:41 -#, fuzzy -#| msgid "Database export options" msgid "Database operations" -msgstr "Opțiuni de exportare a bazei de date" +msgstr "Operații bază de date" #: libraries/classes/Navigation/Nodes/NodeDatabase.php:685 -#, fuzzy -#| msgid "Show hint" msgid "Show hidden items" -msgstr "Arată indiciul" +msgstr "Arată elementele ascunse" #: libraries/classes/Navigation/Nodes/NodeDatabaseContainer.php:36 -#, fuzzy -#| msgid "New" msgctxt "Create new database" msgid "New" -msgstr "Nou" +msgstr "Nouă" #: libraries/classes/Navigation/Nodes/NodeEventContainer.php:37 -#, fuzzy -#| msgid "New" msgctxt "Create new event" msgid "New" msgstr "Nou" @@ -10050,56 +8433,42 @@ msgstr "Nou" #: libraries/classes/Navigation/Nodes/NodeFunctionContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:573 #: libraries/classes/Plugins/Export/ExportXml.php:109 -#, fuzzy msgid "Functions" msgstr "Funcții" #: libraries/classes/Navigation/Nodes/NodeFunctionContainer.php:35 -#, fuzzy -#| msgid "New" msgctxt "Create new function" msgid "New" -msgstr "Nou" +msgstr "Nouă" #: libraries/classes/Navigation/Nodes/NodeIndexContainer.php:35 -#, fuzzy -#| msgid "New" msgctxt "Create new index" msgid "New" msgstr "Nou" #: libraries/classes/Navigation/Nodes/NodeProcedure.php:30 -#, fuzzy -#| msgid "Procedures" msgid "Procedure" -msgstr "Proceduri" +msgstr "Procedură" #: libraries/classes/Navigation/Nodes/NodeProcedureContainer.php:25 #: libraries/classes/Navigation/Nodes/NodeProcedureContainer.php:26 #: libraries/classes/Plugins/Export/ExportSql.php:562 #: libraries/classes/Plugins/Export/ExportXml.php:114 -#, fuzzy msgid "Procedures" msgstr "Proceduri" #: libraries/classes/Navigation/Nodes/NodeProcedureContainer.php:35 #: libraries/classes/Rte/Footer.php:37 -#, fuzzy -#| msgid "New" msgctxt "Create new procedure" msgid "New" -msgstr "Nou" +msgstr "Nouă" #: libraries/classes/Navigation/Nodes/NodeTableContainer.php:36 -#, fuzzy -#| msgid "New" msgctxt "Create new table" msgid "New" msgstr "Nou" #: libraries/classes/Navigation/Nodes/NodeTriggerContainer.php:37 -#, fuzzy -#| msgid "New" msgctxt "Create new trigger" msgid "New" msgstr "Nou" @@ -10108,109 +8477,102 @@ msgstr "Nou" #: libraries/classes/Navigation/Nodes/NodeViewContainer.php:26 #: libraries/classes/Plugins/Export/ExportXml.php:129 #: templates/database/structure/show_create.twig:24 -#, fuzzy -#| msgid "View" msgid "Views" -msgstr "Vizualizare" +msgstr "Vizualizări" #: libraries/classes/Navigation/Nodes/NodeViewContainer.php:36 -#, fuzzy -#| msgid "New" msgctxt "Create new view" msgid "New" -msgstr "Nou" +msgstr "Nouă" #: libraries/classes/Normalization.php:176 msgid "Make all columns atomic" -msgstr "" +msgstr "Face toate coloanele atomice" #: libraries/classes/Normalization.php:178 #: libraries/classes/Normalization.php:877 msgid "First step of normalization (1NF)" -msgstr "" +msgstr "Primul pas al normalizării (1NF)" #: libraries/classes/Normalization.php:181 #: libraries/classes/Normalization.php:232 #: libraries/classes/Normalization.php:281 #: libraries/classes/Normalization.php:319 msgid "Step 1." -msgstr "" +msgstr "Pasul 1." #: libraries/classes/Normalization.php:183 msgid "" "Do you have any column which can be split into more than one column? For " "example: address can be split into street, city, country and zip." msgstr "" +"Ai vreo coloană care poate fi împărțită în mai multe coloane? De exemplu: " +"adresa poate fi împărțită în stradă, oraș, țară și cod poștal." #: libraries/classes/Normalization.php:190 msgid "Show me the central list of columns that are not already in this table" -msgstr "" +msgstr "Arată-mi lista centrală a coloanelor care nu sunt încă în acest tabel" #: libraries/classes/Normalization.php:193 msgid "" "Select a column which can be split into more than one (on select of 'no such " "column', it'll move to next step)." msgstr "" +"Selectează o coloană care poate fi împărțită în mai multe coloane (la " +"selectarea „nicio astfel de coloană” se va trece la pasul următor)." #: libraries/classes/Normalization.php:200 normalization.php:19 -#, fuzzy -#| msgid "Select two columns" msgid "Select one…" -msgstr "Alege două coloane" +msgstr "Selectează una…" #: libraries/classes/Normalization.php:201 normalization.php:20 -#, fuzzy -#| msgid "Add/Delete Field Columns" msgid "No such column" -msgstr "Adaugă/șterge coloane" +msgstr "Nicio astfel de coloană" #: libraries/classes/Normalization.php:205 libraries/classes/Types.php:722 #: normalization.php:25 -#, fuzzy msgctxt "string types" msgid "String" -msgstr "Şir de caractere" +msgstr "Șir" #: libraries/classes/Normalization.php:208 msgid "split into " -msgstr "" +msgstr "împarte în " #: libraries/classes/Normalization.php:229 msgid "Have a primary key" -msgstr "" +msgstr "Ai o cheie principală" #: libraries/classes/Normalization.php:235 -#, fuzzy -#| msgid "Error: relation already exists." msgid "Primary key already exists." -msgstr "Eroare: relația deja există." +msgstr "Cheia principală există deja." #: libraries/classes/Normalization.php:240 msgid "" "There is no primary key; please add one.
Hint: A primary key is a column " "(or combination of columns) that uniquely identify all rows." msgstr "" +"Nu există nicio cheie principală; te rog adaugă una.
Sugestie: o cheie " +"principală este o coloană (sau o combinație de coloane) care identifică în " +"mod unic toate rândurile." #: libraries/classes/Normalization.php:248 msgid "Add a primary key on existing column(s)" -msgstr "" +msgstr "Adaugă o cheie principală la coloanele existente" #: libraries/classes/Normalization.php:253 msgid "" "If it's not possible to make existing column combinations as primary key" msgstr "" +"Dacă nu este posibilă combinarea coloanelor existente ca o cheie principală" #: libraries/classes/Normalization.php:257 -#, fuzzy -#| msgid "Add %s field(s)" msgid "+ Add a new primary key column" -msgstr "Adaugă %s câmp(uri)" +msgstr "+ Adaugă o nouă cheie principală la coloană" #: libraries/classes/Normalization.php:280 -#, fuzzy -#| msgid "Remove chart" msgid "Remove redundant columns" -msgstr "Elimină graficul" +msgstr "Înlătură coloanele redundante" #: libraries/classes/Normalization.php:283 msgid "" @@ -10218,28 +8580,29 @@ msgid "" "For example, if you have first_name, last_name and full_name then combining " "first_name and last_name gives full_name which is redundant." msgstr "" +"Ai un grup de coloane care prin combinare dau o coloană existentă? De " +"exemplu, dacă ai first_name, last_name și full_name atunci prin combinare " +"first_name și last_name dă full_name care este redundant." #: libraries/classes/Normalization.php:289 msgid "" "Check the columns which are redundant and click on remove. If no redundant " "column, click on 'No redundant column'" msgstr "" +"Bifează coloanele care sunt redundante și dă clic pe înlătură. Dacă nu " +"există nicio coloană redundantă, dă clic pe ”Nicio coloană redundantă”" #: libraries/classes/Normalization.php:294 -#, fuzzy -#| msgid "Remove selected users" msgid "Remove selected" -msgstr "Eliminarea utilizatorilor selectați" +msgstr "Înlătură cele selectate" #: libraries/classes/Normalization.php:295 -#, fuzzy -#| msgid "Add %s field(s)" msgid "No redundant column" -msgstr "Adaugă %s câmp(uri)" +msgstr "Nicio coloană redundantă" #: libraries/classes/Normalization.php:318 msgid "Move repeating groups" -msgstr "" +msgstr "Mută grupurile repetate" #: libraries/classes/Normalization.php:321 msgid "" @@ -10249,24 +8612,31 @@ msgid "" "on which form a repeating group. In this case a new table (book_id, author) " "should be created." msgstr "" +"Ai un grup de două sau mai multe coloane care sunt strâns legate și toate " +"repetă același atribut? De exemplu, un tabel care conține date despre cărți " +"ar putea avea coloane precum book_id, autor1, autor2, autor3 și așa mai " +"departe, care formează un grup repetat. În acest caz, ar trebui creat un " +"tabel nou (book_id, autor)." #: libraries/classes/Normalization.php:329 msgid "" "Check the columns which form a repeating group. If no such group, click on " "'No repeating group'" msgstr "" +"Bifează coloanele care formează un grup repetat. Dacă nu există un astfel de " +"grup, dă clic pe „Niciun grup repetat”" #: libraries/classes/Normalization.php:335 msgid "No repeating group" -msgstr "" +msgstr "Niciun grup repetat" #: libraries/classes/Normalization.php:364 msgid "Step 2." -msgstr "" +msgstr "Pasul 2." #: libraries/classes/Normalization.php:364 msgid "Find partial dependencies" -msgstr "" +msgstr "Găsește dependențe parțiale" #: libraries/classes/Normalization.php:387 #, php-format @@ -10274,11 +8644,14 @@ msgid "" "No partial dependencies possible as no non-primary column exists since " "primary key ( %1$s ) is composed of all the columns in the table." msgstr "" +"Nu există posibile dependențe parțiale pentru că nu există nicio coloană " +"care nu este principală deoarece cheia principală (%1$s) este compusă din " +"toate coloanele din tabel." #: libraries/classes/Normalization.php:393 #: libraries/classes/Normalization.php:438 msgid "Table is already in second normal form." -msgstr "" +msgstr "Tabelul este deja în a doua formă normală." #: libraries/classes/Normalization.php:398 #, php-format @@ -10286,6 +8659,8 @@ msgid "" "The primary key ( %1$s ) consists of more than one column so we need to find " "the partial dependencies." msgstr "" +"Cheia principală (%1$s) constă din mai multe coloane, deci trebuie să găsim " +"dependențele parțiale." #: libraries/classes/Normalization.php:403 #: libraries/classes/Normalization.php:790 @@ -10293,10 +8668,12 @@ msgid "" "Please answer the following question(s) carefully to obtain a correct " "normalization." msgstr "" +"Te rog răspunde la următoarele întrebări cu atenție pentru a obține o " +"normalizare corectă." #: libraries/classes/Normalization.php:407 msgid "+ Show me the possible partial dependencies based on data in the table" -msgstr "" +msgstr "+ Arată-mi posibile dependențe parțiale pe baza datelor din tabel" #: libraries/classes/Normalization.php:411 msgid "" @@ -10304,12 +8681,15 @@ msgid "" "given set whose values combined together are sufficient to determine the " "value of the column." msgstr "" +"Pentru fiecare coloană de mai jos, te rog selectează setul minim de " +"coloanele din setul dat, ale cărui valori combinate sunt suficiente pentru a " +"determina valoarea coloanei." #: libraries/classes/Normalization.php:421 #: libraries/classes/Normalization.php:829 #, php-format msgid "'%1$s' depends on:" -msgstr "" +msgstr "„%1$s” depinde de:" #: libraries/classes/Normalization.php:433 #, php-format @@ -10317,6 +8697,8 @@ msgid "" "No partial dependencies possible as the primary key ( %1$s ) has just one " "column." msgstr "" +"Nu există posibile dependențe parțiale deoarece cheia principală (%1$s) are " +"doar o coloană." #: libraries/classes/Normalization.php:462 #, php-format @@ -10324,19 +8706,19 @@ msgid "" "In order to put the original table '%1$s' into Second normal form we need to " "create the following tables:" msgstr "" +"Pentru a pune tabelul original „%1$s” în a doua formă normală, trebuie să " +"creăm următoarele tabele:" #: libraries/classes/Normalization.php:499 #, php-format msgid "The second step of normalization is complete for table '%1$s'." -msgstr "" +msgstr "Al doilea pas al normalizării este finalizat pentru tabelul „%1$s”." #: libraries/classes/Normalization.php:539 #: libraries/classes/Normalization.php:689 #: libraries/classes/Normalization.php:761 -#, fuzzy -#| msgid "Error in processing request" msgid "Error in processing!" -msgstr "Eroare în procesarea cererii" +msgstr "Eroare la procesare!" #: libraries/classes/Normalization.php:585 #, php-format @@ -10344,25 +8726,25 @@ msgid "" "In order to put the original table '%1$s' into Third normal form we need to " "create the following tables:" msgstr "" +"Pentru a pune tabelul original „%1$s” în a treia formă normală, trebuie să " +"creăm următoarele tabele:" #: libraries/classes/Normalization.php:633 msgid "The third step of normalization is complete." -msgstr "" +msgstr "Al treilea pas al normalizării este finalizat." #: libraries/classes/Normalization.php:740 #, php-format msgid "Selected repeating group has been moved to the table '%s'" -msgstr "" +msgstr "Grupul repetat selectat a fost mutat în tabelul „%s”" #: libraries/classes/Normalization.php:787 -#, fuzzy -#| msgid "Sep" msgid "Step 3." -msgstr "Sep" +msgstr "Pasul 3." #: libraries/classes/Normalization.php:787 msgid "Find transitive dependencies" -msgstr "" +msgstr "Găsește dependențe tranzitive" #: libraries/classes/Normalization.php:794 msgid "" @@ -10371,176 +8753,162 @@ msgid "" "value of the column.
Note: A column may have no transitive dependency, " "in that case you don't have to select any." msgstr "" +"Pentru fiecare coloană de mai jos, te rog selectează setul minim de " +"coloanele din setul dat ale cărui valori combinate sunt suficiente pentru a " +"determina valoarea coloanei.
Notă: o coloană poate să nu aibă nicio " +"dependență tranzitivă, în acest caz nu trebuie să selectezi niciuna." #: libraries/classes/Normalization.php:843 msgid "" "No Transitive dependencies possible as the table doesn't have any non " "primary key columns" msgstr "" +"Nu există posibile dependențe tranzitive deoarece tabelul nu are nicio " +"coloană cu o cheie care nu este principală" #: libraries/classes/Normalization.php:847 msgid "Table is already in Third normal form!" -msgstr "" +msgstr "Tabelul este deja în a treia formă normală!" #: libraries/classes/Normalization.php:873 -#, fuzzy -#| msgid "Propose table structure" msgid "Improve table structure (Normalization):" -msgstr "Propune structura de tabele" +msgstr "Îmbunătățește structura tabelului (normalizare):" #: libraries/classes/Normalization.php:874 msgid "Select up to what step you want to normalize" -msgstr "" +msgstr "Selectează până la ce pas vrei să normalizezi" #: libraries/classes/Normalization.php:878 msgid "Second step of normalization (1NF+2NF)" -msgstr "" +msgstr "Al doilea pas al normalizării (1NF+2NF)" #: libraries/classes/Normalization.php:879 msgid "Third step of normalization (1NF+2NF+3NF)" -msgstr "" +msgstr "Al treilea pas al normalizării (1NF+2NF+3NF)" #: libraries/classes/Normalization.php:889 msgid "" "Hint: Please follow the procedure carefully in order to obtain correct " "normalization" msgstr "" +"Sugestie: te rog urmează procedura cu atenție pentru a obține normalizarea " +"corectă" #: libraries/classes/Normalization.php:955 msgid "" "This list is based on a subset of the table's data and is not necessarily " "accurate. " msgstr "" +"Această listă se bazează pe un subgrup al datelor din tabel și nu este " +"neapărat corectă. " #: libraries/classes/Normalization.php:971 msgid "No partial dependencies found!" -msgstr "" +msgstr "Nicio dependență parțială găsită!" #: libraries/classes/Operations.php:90 -#, fuzzy -#| msgid "Rename database to" msgid "Rename database to" -msgstr "Redenumire bază de date în" +msgstr "Redenumește baza de date în" #: libraries/classes/Operations.php:106 libraries/classes/Operations.php:244 #: libraries/classes/Operations.php:863 libraries/classes/Operations.php:950 #: libraries/classes/Operations.php:1304 #: templates/columns_definitions/column_adjust_privileges.twig:15 -#, fuzzy -#| msgid "You don't have sufficient privileges to be here right now!" msgid "" "You don't have sufficient privileges to perform this operation; Please refer " "to the documentation for more details" -msgstr "Nu dețineți drepturi de acces pentru a vă afla aici!" +msgstr "" +"Nu ai suficiente privilegii pentru a efectua această operație; te rog " +"consultă documentația pentru mai multe detalii" #: libraries/classes/Operations.php:144 -#, fuzzy, php-format +#, php-format msgid "Database %s has been dropped." -msgstr "Baza de date %s a fost aruncată." +msgstr "Baza de date %s a fost eliminată." #: libraries/classes/Operations.php:156 -#, fuzzy msgid "Remove database" -msgstr "Elimină baza de date" +msgstr "Înlătură baza de date" #: libraries/classes/Operations.php:162 -#, fuzzy msgid "Drop the database (DROP)" -msgstr "Ștergeți baza de date (DROP)" +msgstr "Elimină baza de date (ELIMINĂ)" #: libraries/classes/Operations.php:207 -#, fuzzy -#| msgid "Copy database to" msgid "Copy database to" -msgstr "Copiază baza de date" +msgstr "Copiază baza de date în" #: libraries/classes/Operations.php:219 -#, fuzzy msgid "CREATE DATABASE before copying" -msgstr "CREEAZĂ BAZA DE DATE înainte de copiere" +msgstr "CREEAZĂ BAZĂ DE DATE înainte de copiere" #: libraries/classes/Operations.php:257 -#, fuzzy msgid "Switch to copied database" -msgstr "Schimbă la tabela copiată" +msgstr "Comută la baza de date copiată" #: libraries/classes/Operations.php:305 -#, fuzzy -#| msgid "Continued table caption" msgid "Change all tables collations" -msgstr "Continuare captură tabel" +msgstr "Schimbă toate colaționările tabelelor" #: libraries/classes/Operations.php:311 msgid "Change all tables columns collations" -msgstr "" +msgstr "Schimbă toate colaționările coloanelor din tabele" #: libraries/classes/Operations.php:784 -#, fuzzy msgid "Alter table order by" -msgstr "Alterare „ordonare tabel după”" +msgstr "Modifică ordinea tabelelor după" #: libraries/classes/Operations.php:792 -#, fuzzy msgid "(singly)" msgstr "(individual)" #: libraries/classes/Operations.php:828 -#, fuzzy msgid "Move table to (database.table)" -msgstr "Mută tabelul la (bază_de_date.tabel)" +msgstr "Mută tabelul la (bază de date.tabel)" #: libraries/classes/Operations.php:933 -#, fuzzy msgid "Rename table to" -msgstr "Redenumire tabel la" +msgstr "Redenumește tabelul în" #: libraries/classes/Operations.php:973 -#, fuzzy msgid "Table comments" msgstr "Comentarii tabel" #: libraries/classes/Operations.php:1042 -#, fuzzy msgid "Table options" msgstr "Opțiuni tabel" #: libraries/classes/Operations.php:1049 #: templates/server/engines/engines.twig:4 -#, fuzzy msgid "Storage Engine" msgstr "Motor de stocare" #: libraries/classes/Operations.php:1078 msgid "Change all column collations" -msgstr "" +msgstr "Schimbă toate colaționările coloanelor" #: libraries/classes/Operations.php:1249 -#, fuzzy msgid "Copy table to (database.table)" -msgstr "Copiază tabelul la (bază_de_date.tabel)" +msgstr "Copiază tabelul în (bază de date.tabel)" #: libraries/classes/Operations.php:1319 -#, fuzzy msgid "Switch to copied table" -msgstr "Schimbă la tabela copiată" +msgstr "Comută la tabelul copiat" #: libraries/classes/Operations.php:1343 #: templates/database/structure/check_all_tables.twig:18 -#, fuzzy msgid "Table maintenance" -msgstr "Administrare tabel" +msgstr "Mentenanță tabel" #: libraries/classes/Operations.php:1376 #: templates/database/structure/check_all_tables.twig:19 -#, fuzzy msgid "Analyze table" -msgstr "Analizare tabel" +msgstr "Analizează tabelul" #: libraries/classes/Operations.php:1391 #: templates/database/structure/check_all_tables.twig:20 -#, fuzzy msgid "Check table" -msgstr "Verificare tabel" +msgstr "Verifică tabelul" #: libraries/classes/Operations.php:1405 #: templates/database/structure/check_all_tables.twig:21 @@ -10550,184 +8918,156 @@ msgid "Checksum table" msgstr "Verificare tabel" #: libraries/classes/Operations.php:1419 -#, fuzzy msgid "Defragment table" msgstr "Defragmentare tabel" #: libraries/classes/Operations.php:1431 -#, fuzzy, php-format +#, php-format msgid "Table %s has been flushed." -msgstr "Tabelul %s a fost curățat." +msgstr "Tabelul %s a fost golit." #: libraries/classes/Operations.php:1437 -#, fuzzy -#| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" -msgstr "Curățarea tabelului (\"FLUSH\")" +msgstr "Golește tabelul (FLUSH)" #: libraries/classes/Operations.php:1451 #: templates/database/structure/check_all_tables.twig:22 #: templates/table/structure/display_table_stats.twig:61 -#, fuzzy msgid "Optimize table" -msgstr "Optimizare tabel" +msgstr "Optimizează tabelul" #: libraries/classes/Operations.php:1466 #: templates/database/structure/check_all_tables.twig:23 -#, fuzzy msgid "Repair table" -msgstr "Reparare tabel" +msgstr "Repară tabelul" #: libraries/classes/Operations.php:1512 #: templates/database/structure/check_all_tables.twig:14 #: view_operations.php:136 -#, fuzzy msgid "Delete data or table" -msgstr "Șterge datele urmărite din acest tabel" +msgstr "Șterge datele sau tabelul" #: libraries/classes/Operations.php:1520 msgid "Empty the table (TRUNCATE)" -msgstr "" +msgstr "Golește tabelul (TRUNCATE)" #: libraries/classes/Operations.php:1528 -#, fuzzy msgid "Delete the table (DROP)" -msgstr "Nu sînt baze de date" +msgstr "Șterge tabelul (DROP)" #: libraries/classes/Operations.php:1568 #: templates/table/structure/display_structure.twig:179 -#, fuzzy msgid "Analyze" msgstr "Analizează" #: libraries/classes/Operations.php:1569 #: templates/table/structure/display_structure.twig:179 -#, fuzzy msgid "Check" msgstr "Verifică" #: libraries/classes/Operations.php:1570 #: templates/table/structure/display_structure.twig:179 -#, fuzzy msgid "Optimize" msgstr "Optimizează" #: libraries/classes/Operations.php:1571 #: templates/table/structure/display_structure.twig:179 -#, fuzzy msgid "Rebuild" msgstr "Reconstruiește" #: libraries/classes/Operations.php:1572 #: templates/table/structure/display_structure.twig:179 -#, fuzzy msgid "Repair" msgstr "Repară" #: libraries/classes/Operations.php:1573 #: templates/table/structure/display_structure.twig:179 msgid "Truncate" -msgstr "" +msgstr "Trunchiază" #: libraries/classes/Operations.php:1587 -#, fuzzy -#| msgid "Collapse" msgid "Coalesce" -msgstr "Restrânge" +msgstr "Fuzionează" #: libraries/classes/Operations.php:1596 -#, fuzzy msgid "Partition maintenance" -msgstr "Întreținerea partiției" +msgstr "Mentenanță partiție" #: libraries/classes/Operations.php:1613 -#, fuzzy, php-format +#, php-format msgid "Partition %s" -msgstr "Partiția %s" +msgstr "Partiție %s" #: libraries/classes/Operations.php:1631 #: templates/table/structure/display_partitions.twig:137 -#, fuzzy msgid "Remove partitioning" -msgstr "Elimină partiționarea" +msgstr "Înlătură partiționarea" #: libraries/classes/Operations.php:1657 -#, fuzzy msgid "Check referential integrity:" -msgstr "Verificarea integrității referinței:" +msgstr "Verifică integritatea referențială:" #: libraries/classes/Operations.php:2043 -#, fuzzy msgid "Can't move table to same one!" -msgstr "Nu se poate muta tabelul în el însuși!" +msgstr "Nu pot muta tabelul în el însuși!" #: libraries/classes/Operations.php:2045 -#, fuzzy msgid "Can't copy table to same one!" -msgstr "Nu se poate copia tabelul în el însuși!" +msgstr "Nu pot copia tabelul în el însuși!" #: libraries/classes/Operations.php:2069 -#, fuzzy, php-format -#| msgid "Table %s has been moved to %s." +#, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." -msgstr "Tabelul %s a fost mutat la %s." +msgstr "Tabelul %s a fost mutat în %s. Privilegiile au fost ajustate." #: libraries/classes/Operations.php:2076 -#, fuzzy, php-format -#| msgid "Table %s has been copied to %s." +#, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." -msgstr "Tabelul %s a fost copiat la %s." +msgstr "Tabelul %s a fost copiat în %s. Privilegiile au fost ajustate." #: libraries/classes/Operations.php:2085 -#, fuzzy, php-format +#, php-format msgid "Table %s has been moved to %s." -msgstr "Tabelul %s a fost mutat la %s." +msgstr "Tabelul %s a fost mutat în %s." #: libraries/classes/Operations.php:2089 -#, fuzzy, php-format +#, php-format msgid "Table %s has been copied to %s." -msgstr "Tabelul %s a fost copiat la %s." +msgstr "Tabelul %s a fost copiat în %s." #: libraries/classes/Operations.php:2117 -#, fuzzy msgid "The table name is empty!" -msgstr "Denumirea tabelului e goală!" +msgstr "Numele tabelului este gol!" #: libraries/classes/Pdf.php:131 -#, fuzzy msgid "Error while creating PDF:" -msgstr "Eroare la creare PDF:" +msgstr "Eroare la crearea PDF-ului:" #: libraries/classes/Plugins.php:578 -#, fuzzy -#| msgid "This format has no options" msgid "This format has no options" -msgstr "Acest format nu are opțiuni" +msgstr "Acest format nu are nicio opțiune" #: libraries/classes/Plugins/Auth/AuthenticationConfig.php:75 -#, fuzzy msgid "Cannot connect: invalid settings." -msgstr "Conexiune esuata: setari invalide." +msgstr "Nu pot conecta: setări invalide." #: libraries/classes/Plugins/Auth/AuthenticationConfig.php:89 #: libraries/classes/Plugins/Auth/AuthenticationHttp.php:83 #: templates/login/header.twig:5 -#, fuzzy, php-format +#, php-format msgid "Welcome to %s" -msgstr "Bine ați venit la %s" +msgstr "Bun venit la %s" #: libraries/classes/Plugins/Auth/AuthenticationConfig.php:105 -#, fuzzy, php-format +#, php-format msgid "" "You probably did not create a configuration file. You might want to use the " "%1$ssetup script%2$s to create one." msgstr "" -"Motivul probabil pentru aceasta este că nu ați creat un fișier de " -"configurare. Puteți folosi %1$s vrăjitorul de setări %2$s pentru a crea un " -"astfel de fișier." +"Probabil nu ai creat un fișier de configurare. Poți folosi %1$sscriptul de " +"inițializare%2$s pentru a crea unul." #: libraries/classes/Plugins/Auth/AuthenticationConfig.php:125 -#, fuzzy msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -10735,127 +9075,107 @@ msgid "" "the administrator of the MySQL server." msgstr "" "phpMyAdmin a încercat să se conecteze la serverul MySQL, dar acesta a " -"respins conexiunea. Verificați numele hostului, utilizatorul și parola în " -"fișierul de configurare și asigurați-vă că ele corespund informațiilor " -"furnizate de administratorul serverului MySQL." +"respins conexiunea. Verifică gazda, numele de utilizator și parola în " +"configurarea ta și asigură-te că ele corespund cu informațiile furnizate de " +"administratorul serverului MySQL." #: libraries/classes/Plugins/Auth/AuthenticationConfig.php:153 msgid "Retry to connect" -msgstr "" +msgstr "Reîncearcă să te conectezi" #: libraries/classes/Plugins/Auth/AuthenticationCookie.php:134 msgid "Your session has expired. Please log in again." -msgstr "" +msgstr "Sesiunea ta a expirat. Te rog autentifică-te din nou." #: libraries/classes/Plugins/Auth/AuthenticationCookie.php:154 -#, fuzzy msgid "Log in" msgstr "Autentificare" #: libraries/classes/Plugins/Auth/AuthenticationCookie.php:162 #: libraries/classes/Plugins/Auth/AuthenticationCookie.php:172 -#, fuzzy msgid "You can enter hostname/IP address and port separated by space." -msgstr "Puteți introduce adresă gazdă/IP și port separate de spațiu." +msgstr "" +"Poți introduce numele gazdei/adresa IP și portul separat printr-un spațiu." #: libraries/classes/Plugins/Auth/AuthenticationCookie.php:177 -#, fuzzy msgid "Username:" msgstr "Nume utilizator:" #: libraries/classes/Plugins/Auth/AuthenticationCookie.php:189 -#, fuzzy -#| msgid "Server Choice" msgid "Server Choice:" -msgstr "Alegerea serverului" +msgstr "Alegere server:" #: libraries/classes/Plugins/Auth/AuthenticationCookie.php:313 -#, fuzzy -#| msgid "Could not connect to the database server!" msgid "Failed to connect to the reCAPTCHA service!" -msgstr "Nu s-a putut realiza conexiunea cu serverul de baze de date!" +msgstr "Conectarea la serviciul reCAPTCHA a eșuat!" #: libraries/classes/Plugins/Auth/AuthenticationCookie.php:315 msgid "Entered captcha is wrong, try again!" -msgstr "" +msgstr "Captcha introdusă este greșită, încearcă din nou!" #: libraries/classes/Plugins/Auth/AuthenticationCookie.php:320 msgid "Missing reCAPTCHA verification, maybe it has been blocked by adblock?" -msgstr "" +msgstr "Lipsește verificarea reCAPTCHA, poate a fost blocată de adblock?" #: libraries/classes/Plugins/Auth/AuthenticationCookie.php:344 -#, fuzzy -#| msgid "Cannot log in to the MySQL server" msgid "You are not allowed to log in to this MySQL server!" -msgstr "Nu pot face conexiunea catre serverul MySQL" +msgstr "Nu ai voie să te autentifici în acest server MySQL!" #: libraries/classes/Plugins/Auth/AuthenticationHttp.php:88 -#, fuzzy msgid "Wrong username/password. Access denied." -msgstr "Nume de utilizator/parolă incorecte. Accesul interzis." +msgstr "Nume de utilizator incorect/parolă incorectă. Acces refuzat." #: libraries/classes/Plugins/Auth/AuthenticationSignon.php:83 -#, fuzzy msgid "Can not find signon authentication script:" -msgstr "Tipul autentificării" +msgstr "Nu pot găsi scriptul de autentificare signon:" #: libraries/classes/Plugins/AuthenticationPlugin.php:167 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" +"Autentificarea fără o parolă este interzisă de configurarea ta (vezi Permite " +"fără parolă)" #: libraries/classes/Plugins/AuthenticationPlugin.php:174 -#, fuzzy, php-format +#, php-format msgid "No activity within %s seconds; please log in again." -msgstr "" -"Nu ați avut activitate de mai mult de %s secunde, vă rugăm să vă " -"autentificați din nou." +msgstr "Nicio activitate timp de %s secunde, te rog autentifică-te din nou." #: libraries/classes/Plugins/AuthenticationPlugin.php:184 #: libraries/classes/Plugins/AuthenticationPlugin.php:187 -#, fuzzy msgid "Cannot log in to the MySQL server" -msgstr "Nu pot face conexiunea catre serverul MySQL" +msgstr "Nu te pot autentifica în serverul MySQL" #: libraries/classes/Plugins/AuthenticationPlugin.php:335 msgid "You have enabled two factor authentication, please confirm your login." msgstr "" +"Ai activat autentificarea pe două niveluri, te rog confirmă autentificarea." #: libraries/classes/Plugins/Export/ExportCodegen.php:101 #: templates/display/import/import.twig:168 #: templates/display/export/format_dropdown.twig:2 -#, fuzzy -#| msgid "Format" msgid "Format:" -msgstr "Format" +msgstr "Format:" #: libraries/classes/Plugins/Export/ExportCsv.php:63 #: libraries/classes/Plugins/Import/AbstractImportCsv.php:58 -#, fuzzy -#| msgid "Lines terminated by" msgid "Columns separated with:" -msgstr "Linii terminate de" +msgstr "Coloane separate cu:" #: libraries/classes/Plugins/Export/ExportCsv.php:68 #: libraries/classes/Plugins/Import/AbstractImportCsv.php:64 -#, fuzzy -#| msgid "Fields enclosed by" msgid "Columns enclosed with:" -msgstr "câmpuri încadrate de" +msgstr "Coloane închise cu:" #: libraries/classes/Plugins/Export/ExportCsv.php:73 #: libraries/classes/Plugins/Import/AbstractImportCsv.php:71 -#, fuzzy -#| msgid "Fields escaped by" msgid "Columns escaped with:" -msgstr "câmpuri realizate de" +msgstr "Coloane escapate cu:" #: libraries/classes/Plugins/Export/ExportCsv.php:78 #: libraries/classes/Plugins/Import/AbstractImportCsv.php:78 -#, fuzzy -#| msgid "Lines terminated by" msgid "Lines terminated with:" -msgstr "Linii terminate de" +msgstr "Linii terminate cu:" #: libraries/classes/Plugins/Export/ExportCsv.php:83 #: libraries/classes/Plugins/Export/ExportExcel.php:52 @@ -10864,10 +9184,8 @@ msgstr "Linii terminate de" #: libraries/classes/Plugins/Export/ExportOds.php:67 #: libraries/classes/Plugins/Export/ExportOdt.php:133 #: libraries/classes/Plugins/Export/ExportTexytext.php:90 -#, fuzzy -#| msgid "Replace NULL by" msgid "Replace NULL with:" -msgstr "Înlocuire NULL cu" +msgstr "Înlocuiește NULL cu:" #: libraries/classes/Plugins/Export/ExportCsv.php:88 #: libraries/classes/Plugins/Export/ExportExcel.php:57 @@ -10875,10 +9193,8 @@ msgid "Remove carriage return/line feed characters within columns" msgstr "" #: libraries/classes/Plugins/Export/ExportExcel.php:67 -#, fuzzy -#| msgid "Excel edition" msgid "Excel edition:" -msgstr "Ediția Excel" +msgstr "Ediție Excel:" #: libraries/classes/Plugins/Export/ExportHtmlword.php:69 #: libraries/classes/Plugins/Export/ExportLatex.php:103 @@ -10888,7 +9204,6 @@ msgstr "Ediția Excel" #: libraries/classes/Plugins/Export/ExportSql.php:213 #: libraries/classes/Plugins/Export/ExportTexytext.php:68 #: libraries/config.values.php:164 -#, fuzzy msgid "structure" msgstr "structură" @@ -10900,7 +9215,6 @@ msgstr "structură" #: libraries/classes/Plugins/Export/ExportSql.php:214 #: libraries/classes/Plugins/Export/ExportTexytext.php:69 #: libraries/config.values.php:165 -#, fuzzy msgid "data" msgstr "date" @@ -10912,7 +9226,6 @@ msgstr "date" #: libraries/classes/Plugins/Export/ExportSql.php:215 #: libraries/classes/Plugins/Export/ExportTexytext.php:70 #: libraries/config.values.php:166 -#, fuzzy msgid "structure and data" msgstr "structură și date" @@ -10921,25 +9234,21 @@ msgstr "structură și date" #: libraries/classes/Plugins/Export/ExportOdt.php:122 #: libraries/classes/Plugins/Export/ExportTexytext.php:79 #: libraries/classes/Plugins/Export/ExportXml.php:136 -#, fuzzy -#| msgid "Databases display options" msgid "Data dump options" -msgstr "Opțiuni de afișare a bazelor de date" +msgstr "Opțiuni dump date" #: libraries/classes/Plugins/Export/ExportHtmlword.php:210 #: libraries/classes/Plugins/Export/ExportOdt.php:272 #: libraries/classes/Plugins/Export/ExportSql.php:2345 #: libraries/classes/Plugins/Export/ExportTexytext.php:193 -#, fuzzy msgid "Dumping data for table" -msgstr "Salvarea datelor din tabel" +msgstr "Eliminarea datelor din tabel" #: libraries/classes/Plugins/Export/ExportHtmlword.php:487 #: libraries/classes/Plugins/Export/ExportOdt.php:610 #: libraries/classes/Plugins/Export/ExportTexytext.php:451 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:316 #: libraries/classes/Rte/RteList.php:106 libraries/classes/Rte/Triggers.php:379 -#, fuzzy msgid "Event" msgstr "Eveniment" @@ -10949,7 +9258,6 @@ msgstr "Eveniment" #: libraries/classes/Plugins/Export/Helpers/Pdf.php:318 #: libraries/classes/Rte/Events.php:500 libraries/classes/Rte/Routines.php:1010 #: libraries/classes/Rte/Triggers.php:393 -#, fuzzy msgid "Definition" msgstr "Definiție" @@ -10957,15 +9265,13 @@ msgstr "Definiție" #: libraries/classes/Plugins/Export/ExportOdt.php:692 #: libraries/classes/Plugins/Export/ExportSql.php:2005 #: libraries/classes/Plugins/Export/ExportTexytext.php:516 -#, fuzzy msgid "Table structure for table" -msgstr "Structura de tabel pentru tabelul" +msgstr "Structură tabel pentru tabel" #: libraries/classes/Plugins/Export/ExportHtmlword.php:585 #: libraries/classes/Plugins/Export/ExportOdt.php:725 #: libraries/classes/Plugins/Export/ExportSql.php:2075 #: libraries/classes/Plugins/Export/ExportTexytext.php:541 -#, fuzzy msgid "Structure for view" msgstr "Structură pentru vizualizare" @@ -10974,206 +9280,168 @@ msgstr "Structură pentru vizualizare" #: libraries/classes/Plugins/Export/ExportSql.php:2120 #: libraries/classes/Plugins/Export/ExportTexytext.php:557 msgid "Stand-in structure for view" -msgstr "" +msgstr "Substitut structură pentru vizualizare" #: libraries/classes/Plugins/Export/ExportJson.php:89 msgid "Output pretty-printed JSON (Use human-readable formatting)" msgstr "" +"Ieșire JSON imprimată frumos (folosește formatarea care poate fi citită de " +"oameni)" #: libraries/classes/Plugins/Export/ExportJson.php:95 msgid "Output unicode characters unescaped" msgstr "" #: libraries/classes/Plugins/Export/ExportLatex.php:51 -#, fuzzy msgid "Content of table @TABLE@" -msgstr "Conținutul tabelului @TABLE@" +msgstr "Conținut tabel @TABLE@" #: libraries/classes/Plugins/Export/ExportLatex.php:52 -#, fuzzy msgid "(continued)" msgstr "(continuare)" #: libraries/classes/Plugins/Export/ExportLatex.php:53 -#, fuzzy msgid "Structure of table @TABLE@" msgstr "Structura tabelului @TABLE@" #: libraries/classes/Plugins/Export/ExportLatex.php:115 #: libraries/classes/Plugins/Export/ExportOdt.php:93 #: libraries/classes/Plugins/Export/ExportSql.php:227 -#, fuzzy -#| msgid "Transformation options" msgid "Object creation options" -msgstr "Opțiuni de transformare" +msgstr "Opțiuni creare obiect" #: libraries/classes/Plugins/Export/ExportLatex.php:121 #: libraries/classes/Plugins/Export/ExportLatex.php:173 -#, fuzzy -#| msgid "Table caption" msgid "Table caption:" -msgstr "Captură tabel" +msgstr "Text asociat tabel:" #: libraries/classes/Plugins/Export/ExportLatex.php:127 #: libraries/classes/Plugins/Export/ExportLatex.php:179 -#, fuzzy -#| msgid "Table caption" msgid "Table caption (continued):" -msgstr "Captură tabel" +msgstr "Text asociat tabel (continuare):" #: libraries/classes/Plugins/Export/ExportLatex.php:133 #: libraries/classes/Plugins/Export/ExportLatex.php:185 -#, fuzzy -#| msgid "Label key" msgid "Label key:" -msgstr "Tasta label" +msgstr "Cheie etichetă:" #: libraries/classes/Plugins/Export/ExportLatex.php:140 #: libraries/classes/Plugins/Export/ExportOdt.php:100 #: libraries/classes/Plugins/Export/ExportSql.php:124 -#, fuzzy -#| msgid "Disable foreign key checks" msgid "Display foreign key relationships" -msgstr "Dezactivare verificări de cheie străine" +msgstr "Afișează relațiile cheilor străine" #: libraries/classes/Plugins/Export/ExportLatex.php:146 #: libraries/classes/Plugins/Export/ExportOdt.php:106 -#, fuzzy -#| msgid "Displaying Column Comments" msgid "Display comments" -msgstr "Arată comentariile coloanei" +msgstr "Afișează comentarii" #: libraries/classes/Plugins/Export/ExportLatex.php:152 #: libraries/classes/Plugins/Export/ExportOdt.php:112 #: libraries/classes/Plugins/Export/ExportSql.php:131 -#, fuzzy -#| msgid "Available MIME types" msgid "Display MIME types" -msgstr "Tipuri MIME disponibile" +msgstr "Afișează tipuri de MIME" #: libraries/classes/Plugins/Export/ExportLatex.php:168 -#, fuzzy -#| msgid "Put columns names in the first row" msgid "Put columns names in the first row:" -msgstr "Pune numele coloanelor în primul rând" +msgstr "Pune numele coloanelor în primul rând:" #: libraries/classes/Plugins/Export/ExportLatex.php:216 #: libraries/classes/Plugins/Export/ExportSql.php:694 #: libraries/classes/Plugins/Export/ExportXml.php:236 #: libraries/classes/ReplicationGui.php:447 #: libraries/classes/ReplicationGui.php:709 -#, fuzzy -#| msgid "Host" msgid "Host:" -msgstr "Gazda" +msgstr "Gazdă:" #: libraries/classes/Plugins/Export/ExportLatex.php:221 #: libraries/classes/Plugins/Export/ExportSql.php:700 #: libraries/classes/Plugins/Export/ExportXml.php:241 -#, fuzzy -#| msgid "Generation Time" msgid "Generation Time:" -msgstr "Timp de generare" +msgstr "Timp de generare:" #: libraries/classes/Plugins/Export/ExportLatex.php:224 #: libraries/classes/Plugins/Export/ExportSql.php:706 #: libraries/classes/Plugins/Export/ExportXml.php:244 -#, fuzzy -#| msgid "PHP Version" msgid "PHP Version:" -msgstr "Versiune PHP" +msgstr "Versiune PHP:" #: libraries/classes/Plugins/Export/ExportLatex.php:254 #: libraries/classes/Plugins/Export/ExportSql.php:895 #: libraries/classes/Plugins/Export/ExportXml.php:405 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:118 -#, fuzzy -#| msgid "Database" msgid "Database:" -msgstr "Bază de date" +msgstr "Bază de date:" #: libraries/classes/Plugins/Export/ExportLatex.php:327 #: libraries/classes/Plugins/Export/ExportSql.php:2188 -#, fuzzy -#| msgid "Data" msgid "Data:" -msgstr "Date" +msgstr "Date:" #: libraries/classes/Plugins/Export/ExportLatex.php:507 -#, fuzzy -#| msgid "Structure" msgid "Structure:" -msgstr "Structură" +msgstr "Structură:" #: libraries/classes/Plugins/Export/ExportMediawiki.php:81 -#, fuzzy msgid "Export table names" -msgstr "Modul de export" +msgstr "Exportă nume tabele" #: libraries/classes/Plugins/Export/ExportMediawiki.php:88 -#, fuzzy -#| msgid "horizontal (rotated headers)" msgid "Export table headers" -msgstr "orizontal (colontitlu rotativ)" +msgstr "Exportă anteturi tabele" #: libraries/classes/Plugins/Export/ExportPdf.php:99 -#, fuzzy -#| msgid "Report title" msgid "Report title:" -msgstr "Titlu raport" +msgstr "Titlu raport:" #: libraries/classes/Plugins/Export/ExportPdf.php:228 -#, fuzzy -#| msgid "Dumping data for table" msgid "Dumping data" -msgstr "Salvarea datelor din tabel" +msgstr "Eliminarea datelor" #: libraries/classes/Plugins/Export/ExportPdf.php:283 -#, fuzzy -#| msgid "structure" msgid "View structure" -msgstr "structură" +msgstr "Vezi structura" #: libraries/classes/Plugins/Export/ExportPdf.php:286 -#, fuzzy -#| msgid "and then" msgid "Stand in" -msgstr "și apoi" +msgstr "Substituent" #: libraries/classes/Plugins/Export/ExportSql.php:102 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" msgstr "" +"Afișează comentarii (include informații, cum ar fi datarea exportului, " +"versiunea PHP și versiunea serverului)" #: libraries/classes/Plugins/Export/ExportSql.php:110 -#, fuzzy -#| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" -msgstr "Adăugare comentariu la antet (\\n înseamnă delimitare de rând)" +msgstr "" +"Comentariu antet personalizat suplimentar (\\n" +" separă liniile):" #: libraries/classes/Plugins/Export/ExportSql.php:116 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" msgstr "" +"Include datarea când au fost create bazele de date, când au fost actualizate " +"și verificate ultima dată" #: libraries/classes/Plugins/Export/ExportSql.php:175 -#, fuzzy -#| msgid "Export method" msgid "Export metadata" -msgstr "Metodă de export" +msgstr "Exportă metadate" #: libraries/classes/Plugins/Export/ExportSql.php:190 msgid "" "Database system or older MySQL server to maximize output compatibility with:" msgstr "" +"Sistem baze de date sau server MySQL mai vechi pentru a maximiza " +"compatibilitatea ieșirilor cu:" #: libraries/classes/Plugins/Export/ExportSql.php:235 -#, fuzzy -#| msgid "Statements" msgid "Add statements:" -msgstr "Comenzi" +msgstr "Adaugă declarații:" #: libraries/classes/Plugins/Export/ExportSql.php:243 #: libraries/classes/Plugins/Export/ExportSql.php:252 @@ -11182,58 +9450,58 @@ msgstr "Comenzi" #: libraries/classes/Plugins/Export/ExportSql.php:306 #: libraries/classes/Plugins/Export/ExportSql.php:313 #: libraries/classes/Plugins/Export/ExportSql.php:322 -#, fuzzy, php-format -#| msgid "Statements" +#, php-format msgid "Add %s statement" -msgstr "Comenzi" +msgstr "Adaugă declarație %s" #: libraries/classes/Plugins/Export/ExportSql.php:289 msgid "(less efficient as indexes will be generated during table creation)" msgstr "" +"(mai puțin eficientă, deoarece indexurile vor fi generate în timpul creării " +"tabelului)" #: libraries/classes/Plugins/Export/ExportSql.php:297 -#, fuzzy, php-format -#| msgid "Session value" +#, php-format msgid "%s value" -msgstr "Valoare sesiune" +msgstr "Valoare %s" #: libraries/classes/Plugins/Export/ExportSql.php:331 msgid "" "Enclose table and column names with backquotes (Protects column and table " "names formed with special characters or keywords)" msgstr "" +"Închide numele tabelelor și coloanelor cu ghilimele(Protejează numele " +"coloanelor și tabelelor formate cu caractere speciale sau cuvinte cheie)" #: libraries/classes/Plugins/Export/ExportSql.php:345 -#, fuzzy -#| msgid "Transformation options" msgid "Data creation options" -msgstr "Opțiuni de transformare" +msgstr "Opțiuni creare date" #: libraries/classes/Plugins/Export/ExportSql.php:350 #: libraries/classes/Plugins/Export/ExportSql.php:2293 msgid "Truncate table before insert" -msgstr "" +msgstr "Trunchiază tabelul înainte de inserare" #: libraries/classes/Plugins/Export/ExportSql.php:357 msgid "Instead of INSERT statements, use:" -msgstr "" +msgstr "În loc de declarațiile INSEREAZĂ, folosește:" #: libraries/classes/Plugins/Export/ExportSql.php:363 msgid "INSERT DELAYED statements" -msgstr "" +msgstr "Declarații INSERT DELAYED" #: libraries/classes/Plugins/Export/ExportSql.php:375 #: libraries/classes/Plugins/Export/ExportSql.php:409 msgid "INSERT IGNORE statements" -msgstr "" +msgstr "Declarații INSERT IGNORE" #: libraries/classes/Plugins/Export/ExportSql.php:389 msgid "Function to use when dumping data:" -msgstr "" +msgstr "Funcție de folosit când se elimină date:" #: libraries/classes/Plugins/Export/ExportSql.php:404 msgid "Syntax to use when inserting data:" -msgstr "" +msgstr "Sintaxă de folosit când se inserează date:" #: libraries/classes/Plugins/Export/ExportSql.php:414 msgid "" @@ -11241,6 +9509,9 @@ msgid "" "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" +"include numele coloanelor în fiecare declarație INSEREAZĂ
      Exemplu: INSEREAZĂ ÎN tbl_name " +"(col_A,col_B,col_C) VALORILE (1,2,3)" #: libraries/classes/Plugins/Export/ExportSql.php:419 msgid "" @@ -11248,176 +9519,159 @@ msgid "" "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" +"inserează mai multe rînduri în fiecare declarație INSEREAZĂ
      Exemplu: INSEREAZĂ ÎN tbl_name " +"(col_A,col_B,col_C) VALORILE (1,2,3), (4,5,6), (7,8,9)" #: libraries/classes/Plugins/Export/ExportSql.php:424 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B,col_C) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" +"ambele de mai sus
      Exemplu: INSEREAZĂ ÎN " +"tbl_name (col_A,col_B,col_C) VALORILE (1,2,3), (4,5,6), (7,8,9)" #: libraries/classes/Plugins/Export/ExportSql.php:429 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" +"niciuna de mai sus
      Exemplu: INSEREAZĂ ÎN " +"tbl_name VALORILE (1,2,3)" #: libraries/classes/Plugins/Export/ExportSql.php:448 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" +"Elimină coloanele binare în notație hexazecimală (de exemplu, „abc” " +"devine 0x616263)" #: libraries/classes/Plugins/Export/ExportSql.php:458 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" +"Elimină coloanele DATARE în UTC (permite coloanelor DATARE să fie " +"eliminate și reîncărcate între servere în diferite fusuri orare)" #: libraries/classes/Plugins/Export/ExportSql.php:519 msgid "It appears your database uses routines;" -msgstr "" +msgstr "Se pare că baza ta de date folosește rutine;" #: libraries/classes/Plugins/Export/ExportSql.php:522 #: libraries/classes/Plugins/Export/ExportSql.php:1548 #: libraries/classes/Plugins/Export/ExportSql.php:2065 msgid "alias export may not work reliably in all cases." -msgstr "" +msgstr "exportul aliasului poate să nu funcționeze fiabil în toate cazurile." #: libraries/classes/Plugins/Export/ExportSql.php:1009 -#, fuzzy -#| msgid "Metadata Headers" msgid "Metadata" -msgstr "Headere Metadata" +msgstr "Metadate" #: libraries/classes/Plugins/Export/ExportSql.php:1079 -#, fuzzy, php-format -#| msgid "Metadata Headers" +#, php-format msgid "Metadata for table %s" -msgstr "Headere Metadata" +msgstr "Metadate pentru tabelul %s" #: libraries/classes/Plugins/Export/ExportSql.php:1086 -#, fuzzy, php-format -#| msgid "Metadata Headers" +#, php-format msgid "Metadata for database %s" -msgstr "Headere Metadata" +msgstr "Metadate pentru baza de date %s" #: libraries/classes/Plugins/Export/ExportSql.php:1418 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:603 -#, fuzzy msgid "Creation:" msgstr "Creare:" #: libraries/classes/Plugins/Export/ExportSql.php:1431 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:610 -#, fuzzy msgid "Last update:" msgstr "Ultima actualizare:" #: libraries/classes/Plugins/Export/ExportSql.php:1444 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:617 -#, fuzzy msgid "Last check:" msgstr "Ultima verificare:" #: libraries/classes/Plugins/Export/ExportSql.php:1491 -#, fuzzy, php-format -#| msgid "Table structure for table" +#, php-format msgid "Error reading structure for table %s:" -msgstr "Structura de tabel pentru tabelul" +msgstr "Eroare la citirea structurii tabelului %s:" #: libraries/classes/Plugins/Export/ExportSql.php:1545 msgid "It appears your database uses views;" -msgstr "" +msgstr "Se pare că baza ta de date folosește vizualizări;" #: libraries/classes/Plugins/Export/ExportSql.php:1722 -#, fuzzy msgid "Constraints for dumped tables" -msgstr "Restrictii pentru tabele sterse" +msgstr "Constrângeri pentru tabele eliminate" #: libraries/classes/Plugins/Export/ExportSql.php:1723 -#, fuzzy msgid "Constraints for table" -msgstr "Restrictii pentru tabele" +msgstr "Constrângeri pentru tabele" #: libraries/classes/Plugins/Export/ExportSql.php:1753 -#, fuzzy -#| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" -msgstr "Restrictii pentru tabele sterse" +msgstr "Indexuri pentru tabele eliminate" #: libraries/classes/Plugins/Export/ExportSql.php:1754 -#, fuzzy -#| msgid "Inside tables:" msgid "Indexes for table" -msgstr "În interiorul tabelelor:" +msgstr "Indexuri pentru tabele" #: libraries/classes/Plugins/Export/ExportSql.php:1782 -#, fuzzy -#| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" -msgstr "Nu folosi AUTO_INCREMENT pentru valorile de zero" +msgstr "AUTO_INCREMENT pentru tabele eliminate" #: libraries/classes/Plugins/Export/ExportSql.php:1783 -#, fuzzy -#| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" -msgstr "Adaugă valoare pentru AUTO_INCREMENT" +msgstr "AUTO_INCREMENT pentru tabele" #: libraries/classes/Plugins/Export/ExportSql.php:1858 -#, fuzzy msgid "MIME TYPES FOR TABLE" -msgstr "TIPURI MIME PENTRU TABEL" +msgstr "TIPURI DE MIME PENTRU TABELE" #: libraries/classes/Plugins/Export/ExportSql.php:1881 -#, fuzzy -#| msgid "RELATIONS FOR TABLE" msgid "RELATIONSHIPS FOR TABLE" -msgstr "RELAȚII PENTRU TABEL" +msgstr "RELAȚII PENTRU TABELE" #: libraries/classes/Plugins/Export/ExportSql.php:2062 msgid "It appears your table uses triggers;" -msgstr "" +msgstr "Se pare că tabelul tău folosește declanșatori;" #: libraries/classes/Plugins/Export/ExportSql.php:2099 -#, fuzzy, php-format -#| msgid "Structure for view" +#, php-format msgid "Structure for view %s exported as a table" -msgstr "Structură pentru vizualizare" +msgstr "Structură pentru vizualizarea %s exportată ca un tabel" #: libraries/classes/Plugins/Export/ExportSql.php:2123 msgid "(See below for the actual view)" -msgstr "" +msgstr "(Vezi mai jos vizualizarea actuală)" #: libraries/classes/Plugins/Export/ExportSql.php:2203 -#, fuzzy, php-format -#| msgid "Allows reading data." +#, php-format msgid "Error reading data for table %s:" -msgstr "Permite citirea datelor." +msgstr "Eroare la citirea datelor pentru tabelul %s:" #: libraries/classes/Plugins/Export/ExportXml.php:98 msgid "Object creation options (all are recommended)" -msgstr "" +msgstr "Opțiuni creare obiect (toate sunt recomandate)" #: libraries/classes/Plugins/Export/ExportXml.php:141 -#, fuzzy msgid "Export contents" -msgstr "Modul de export" +msgstr "Exportă conținuturi" #: libraries/classes/Plugins/Export/Helpers/Pdf.php:119 -#, fuzzy -#| msgid "Table" msgid "Table:" -msgstr "Tabel" +msgstr "Tabel:" #: libraries/classes/Plugins/Export/Helpers/Pdf.php:120 msgid "Purpose:" -msgstr "" +msgstr "Scop:" #: libraries/classes/Plugins/Export/Helpers/Pdf.php:501 -#, fuzzy -#| msgid "MIME type" msgid "MIME" -msgstr "Tip MIME" +msgstr "MIME" #: libraries/classes/Plugins/Import/AbstractImportCsv.php:51 msgid "" @@ -11430,6 +9684,8 @@ msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" msgstr "" +"Prima linie a fișierului conține numele coloanelor din tabel (dacă " +"aceasta nu este bifată, prima linie va deveni o parte a datelor)" #: libraries/classes/Plugins/Import/ImportCsv.php:72 msgid "" @@ -11437,13 +9693,15 @@ msgid "" "database, list the corresponding column names here. Column names must be " "separated by commas and not enclosed in quotations." msgstr "" +"Dacă datele din fiecare rând al fișierului nu sunt în aceeași ordine ca și " +"în baza de date, înscrie aici numele coloanelor corespunzătoare. Numele " +"coloanelor trebuie să fie separate prin virgule și să nu fie închise între " +"ghilimele." #: libraries/classes/Plugins/Import/ImportCsv.php:80 #: libraries/classes/Plugins/Import/ImportLdi.php:75 -#, fuzzy -#| msgid "Column names" msgid "Column names: " -msgstr "Denumirile coloanelor" +msgstr "Nume coloane: " #: libraries/classes/Plugins/Import/ImportCsv.php:120 #: libraries/classes/Plugins/Import/ImportCsv.php:135 @@ -11451,7 +9709,7 @@ msgstr "Denumirile coloanelor" #: libraries/classes/Plugins/Import/ImportCsv.php:155 #, php-format msgid "Invalid parameter for CSV import: %s" -msgstr "" +msgstr "Parametru invalid pentru importul CSV: %s" #: libraries/classes/Plugins/Import/ImportCsv.php:207 #, php-format @@ -11459,37 +9717,37 @@ msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" +"Coloana specificată (%s) este invalidă. Asigură-te că numele coloanelor sunt " +"scrise corect, sunt separate prin virgule și nu sunt închise între ghilimele." #: libraries/classes/Plugins/Import/ImportCsv.php:302 #: libraries/classes/Plugins/Import/ImportCsv.php:663 #, php-format msgid "Invalid format of CSV input on line %d." -msgstr "" +msgstr "Format invalid pentru intrarea CSV pe linia %d." #: libraries/classes/Plugins/Import/ImportCsv.php:533 -#, fuzzy, php-format -#| msgid "Invalid field count in CSV input on line %d." +#, php-format msgid "Invalid column count in CSV input on line %d." -msgstr "Invalid field count in CSV input on line %d." +msgstr "Număr de coloane invalid în intrarea CSV pe linia %d." #: libraries/classes/Plugins/Import/ImportLdi.php:113 -#, fuzzy msgid "This plugin does not support compressed imports!" -msgstr "Modulul opțional nu suportă importuri comprimate!" +msgstr "Acest modul nu suportă importuri comprimate!" #: libraries/classes/Plugins/Import/ImportMediawiki.php:53 msgid "MediaWiki Table" -msgstr "" +msgstr "Tabel MediaWiki" #: libraries/classes/Plugins/Import/ImportMediawiki.php:276 -#, fuzzy, php-format -#| msgid "Invalid field count in CSV input on line %d." +#, php-format msgid "Invalid format of mediawiki input on line:
%s." -msgstr "Invalid field count in CSV input on line %d." +msgstr "Format invalid pentru intrarea mediawiki pe linia:
%s." #: libraries/classes/Plugins/Import/ImportOds.php:78 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" +"Importă procentele ca zecimale corecte (de exemplu, 12.00% în .12)" #: libraries/classes/Plugins/Import/ImportOds.php:84 msgid "Import currencies (ex. $5.00 to 5.00)" @@ -11502,46 +9760,41 @@ msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" +"Fișierul XML specificat a fost fie deteriorat ori fie incomplet. Te rog " +"corectează problema și reîncearcă." #: libraries/classes/Plugins/Import/ImportOds.php:163 -#, fuzzy -#| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" -msgstr "Foaie de calcul Open Document" +msgstr "Nu am putut interpreta foaia de calcul OpenDocument!" #: libraries/classes/Plugins/Import/ImportShp.php:48 msgid "ESRI Shape File" -msgstr "" +msgstr "ESRI Shapefile" #: libraries/classes/Plugins/Import/ImportShp.php:80 #: libraries/classes/Plugins/Import/ImportShp.php:153 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." -msgstr "" +msgstr "A apărut o eroare la importarea ESRI Shapefile: „%s”." #: libraries/classes/Plugins/Import/ImportShp.php:183 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." -msgstr "" +msgstr "Extensia spațială MySQL nu acceptă tipul ESRI „%s”." #: libraries/classes/Plugins/Import/ImportShp.php:230 -#, fuzzy -#| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" -msgstr "File %s does not contain any key id" +msgstr "Fișierul importat nu conține niciun fel de date!" #: libraries/classes/Plugins/Import/ImportSql.php:68 -#, fuzzy -#| msgid "SQL compatibility mode" msgid "SQL compatibility mode:" -msgstr "Regim de compatibilitate SQL" +msgstr "Mod compatibilitate SQL:" #: libraries/classes/Plugins/Import/ImportSql.php:80 msgid "Do not use AUTO_INCREMENT for zero values" -msgstr "" +msgstr "Nu folosi AUTO_INCREMENT pentru valorile zero" #: libraries/classes/Plugins/Import/ImportXml.php:45 -#, fuzzy msgid "XML" msgstr "XML" @@ -11549,72 +9802,60 @@ msgstr "XML" #: libraries/classes/Plugins/Schema/Eps/TableStatsEps.php:92 #: libraries/classes/Plugins/Schema/Pdf/TableStatsPdf.php:94 #: libraries/classes/Plugins/Schema/Svg/TableStatsSvg.php:92 -#, fuzzy, php-format -#| msgid "The \"%s\" table doesn't exist!" +#, php-format msgid "The %s table doesn't exist!" -msgstr "Tabelul „%s” nu există!" +msgstr "Tabelul %s nu există!" #: libraries/classes/Plugins/Schema/Eps/EpsRelationSchema.php:65 #: libraries/classes/Plugins/Schema/Svg/SvgRelationSchema.php:69 -#, fuzzy, php-format -#| msgid "Schema of the \"%s\" database - Page %s" +#, php-format msgid "Schema of the %s database - Page %s" -msgstr "Schema bazei de date \"%s\" - Pagina %s" +msgstr "Schema bazei de date %s - pagina %s" #: libraries/classes/Plugins/Schema/ExportRelationSchema.php:290 msgid "SCHEMA ERROR: " -msgstr "" +msgstr "EROARE SCHEMĂ: " #: libraries/classes/Plugins/Schema/Pdf/Pdf.php:238 -#, fuzzy -#| msgid "Invalid export type" msgid "PDF export page" -msgstr "Tip invalid de export" +msgstr "Pagină export PDF" #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:102 -#, fuzzy, php-format -#| msgid "Schema of the \"%s\" database - Page %s" +#, php-format msgid "Schema of the %s database" -msgstr "Schema bazei de date \"%s\" - Pagina %s" +msgstr "Schema bazei de date %s" #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:130 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:525 -#, fuzzy msgid "Relational schema" -msgstr "Schema relațională" +msgstr "Schemă relațională" #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:486 -#, fuzzy msgid "Table of contents" -msgstr "Sumar" +msgstr "Cuprins" #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:634 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:657 #: templates/table/structure/table_structure_header.twig:14 #: templates/table/tracking/structure_snapshot_columns.twig:11 -#, fuzzy msgid "Extra" -msgstr "Extra" +msgstr "Suplimentar" #: libraries/classes/Plugins/Schema/SchemaDia.php:60 #: libraries/classes/Plugins/Schema/SchemaEps.php:68 #: libraries/classes/Plugins/Schema/SchemaPdf.php:68 -#, fuzzy -#| msgid "Creation" msgid "Orientation" -msgstr "Creare" +msgstr "Orientare" #: libraries/classes/Plugins/Schema/SchemaDia.php:64 #: libraries/classes/Plugins/Schema/SchemaEps.php:72 #: libraries/classes/Plugins/Schema/SchemaPdf.php:72 -#, fuzzy msgid "Landscape" -msgstr "Portret" +msgstr "Peisaj" #: libraries/classes/Plugins/Schema/SchemaDia.php:65 #: libraries/classes/Plugins/Schema/SchemaEps.php:73 #: libraries/classes/Plugins/Schema/SchemaPdf.php:73 -#, fuzzy msgid "Portrait" msgstr "Portret" @@ -11622,47 +9863,36 @@ msgstr "Portret" #: libraries/classes/Plugins/Schema/SchemaPdf.php:62 #: libraries/classes/Plugins/Schema/SchemaSvg.php:61 msgid "Same width for all tables" -msgstr "" +msgstr "Aceeași lățime pentru toate tabelele" #: libraries/classes/Plugins/Schema/SchemaPdf.php:87 -#, fuzzy msgid "Show grid" msgstr "Arată grila" #: libraries/classes/Plugins/Schema/SchemaPdf.php:93 #: templates/database/structure/print_view_data_dictionary_link.twig:6 -#, fuzzy -#| msgid "Data Dictionary" msgid "Data dictionary" msgstr "Dicționar de date" #: libraries/classes/Plugins/Schema/SchemaPdf.php:99 -#, fuzzy -#| msgid "neither of the above" msgid "Order of the tables" -msgstr "niciuna din cele de mai sus" +msgstr "Ordinea tabelelor" #: libraries/classes/Plugins/Schema/SchemaPdf.php:104 -#, fuzzy -#| msgid "Ascending" msgid "Name (Ascending)" -msgstr "Crescătoare" +msgstr "Nume (crescător)" #: libraries/classes/Plugins/Schema/SchemaPdf.php:105 -#, fuzzy -#| msgid "Descending" msgid "Name (Descending)" -msgstr "Descrescător" +msgstr "Nume (descrescător)" #: libraries/classes/Plugins/SchemaPlugin.php:69 -#, fuzzy msgid "Show color" msgstr "Arată culoarea" #: libraries/classes/Plugins/SchemaPlugin.php:71 -#, fuzzy msgid "Only show keys" -msgstr "Vezi numai cheile" +msgstr "Arată numai chei" #: libraries/classes/Plugins/Transformations/Abs/Bool2TextTransformationsPlugin.php:29 msgid "" @@ -11703,28 +9933,21 @@ msgstr "" #. l10n: See https://secure.php.net/manual/en/function.strftime.php #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:62 #: libraries/classes/Util.php:1520 -#, fuzzy msgid "%B %d, %Y at %I:%M %p" -msgstr "%d %B %Y la %H:%M" +msgstr "%B %d, %Y la %I:%M %p" #: libraries/classes/Plugins/Transformations/Abs/DownloadTransformationsPlugin.php:28 -#, fuzzy -#| msgid "" -#| "plays a link to download the binary data of the field. You can use the st " -#| "option to specify the filename, or use the second option as the e of a " -#| "field which contains the filename. If you use the second ion, you need to " -#| "set the first option to the empty string." msgid "" "Displays a link to download the binary data of the column. You can use the " "first option to specify the filename, or use the second option as the name " "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 "" -"Afișează un link pentru descarcarea datelor binare a unui camp. Prima " -"optiune este denumirea fisierului binar. A doua optiune este o denumire " -"posibila pentru un rand de tabel care contine denumirea de fisier. Daca " -"setati și o a doua optiune, trebuie sa aveti prima optiune setata ca și " -"empty string" +"Afișează o legătură pentru a descărca datele binare ale unei coloane. Poți " +"folosi prima opțiune pentru a specifica numele fișierului sau folosește a " +"doua opțiune pentru a specifica numele unei coloane care conține numele " +"fișierului. Dacă folosești a doua opțiune, trebuie să setezi prima opțiune " +"ca șir gol." #: libraries/classes/Plugins/Transformations/Abs/ExternalTransformationsPlugin.php:28 #, fuzzy @@ -11763,14 +9986,12 @@ msgstr "" "output va fi afișat fără reformatare (implicit 1)" #: libraries/classes/Plugins/Transformations/Abs/FormattedTransformationsPlugin.php:28 -#, fuzzy -#| msgid "" -#| "plays the contents of the field as-is, without running it through " -#| "lspecialchars(). That is, the field is assumed to contain valid HTML." 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 "Menține formatarea originală a câmpului." +msgstr "" +"Afișează conținutul coloanei așa cum este, fără a o rula prin " +"htmlspecialchars(). Adică, coloana acceptă să conțină HTML valid." #: libraries/classes/Plugins/Transformations/Abs/HexTransformationsPlugin.php:28 msgid "" @@ -11779,28 +10000,29 @@ msgid "" msgstr "" #: libraries/classes/Plugins/Transformations/Abs/ImageLinkTransformationsPlugin.php:32 -#, fuzzy msgid "Displays a link to download this image." -msgstr "Afișează un link la imagine (direct blob download, i.e.)." +msgstr "Afișează o legătură pentru a descărca această imagine." #: libraries/classes/Plugins/Transformations/Abs/ImageUploadTransformationsPlugin.php:28 msgid "" "Image upload functionality which also displays a thumbnail. The options are " "the width and height of the thumbnail in pixels. Defaults to 100 X 100." msgstr "" +"Funcționalitate de încărcare imagini, care afișează și o miniatură. " +"Opțiunile sunt lățimea și înălțimea miniaturii în pixeli. Valoarea implicită " +"este 100 X 100." #: libraries/classes/Plugins/Transformations/Abs/ImageUploadTransformationsPlugin.php:87 msgid "Image preview here" -msgstr "" +msgstr "Previzualizare imagine aici" #: libraries/classes/Plugins/Transformations/Abs/InlineTransformationsPlugin.php:32 -#, fuzzy msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." msgstr "" -"Afișează o imagine mică clickabilă ; opțiuni: lațime, inălțime în pixeli (" -"menține dimensiunile originale)." +"Afișează o miniatură pe care se poate da clic. Opțiunile sunt lățimea și " +"înălțimea maximă în pixeli. Este păstrat raportul de aspect original." #: libraries/classes/Plugins/Transformations/Abs/LongToIPv4TransformationsPlugin.php:28 msgid "" @@ -11820,16 +10042,17 @@ msgid "" "Validates the string using regular expression and performs insert only if " "string matches it. The first option is the Regular Expression." msgstr "" +"Validează șirul folosind expresia obișnuită și efectuează inserarea numai " +"dacă șirul se potrivește. Prima opțiune este expresia obișnuită." #: libraries/classes/Plugins/Transformations/Abs/RegexValidationTransformationsPlugin.php:52 #, php-format msgid "Validation failed for the input string %s." -msgstr "" +msgstr "Validarea pentru șirul de intrare a eșuat %s." #: libraries/classes/Plugins/Transformations/Abs/SQLTransformationsPlugin.php:29 -#, fuzzy msgid "Formats text as SQL query with syntax highlighting." -msgstr "Formatează textul ca interogare SQL cu evidențierea sintaxei." +msgstr "Formatează textul ca o interogare SQL cu evidențierea sintaxei." #: libraries/classes/Plugins/Transformations/Abs/SubstringTransformationsPlugin.php:28 #, fuzzy @@ -11851,369 +10074,308 @@ msgid "" "File upload functionality for TEXT columns. It does not have a textarea for " "input." msgstr "" +"Funcționalitate de încărcare fișiere pentru coloanele TEXT. Nu are o zonă " +"text pentru intrare." #: libraries/classes/Plugins/Transformations/Abs/TextImageLinkTransformationsPlugin.php:33 -#, fuzzy -#| msgid "" -#| "plays an image and a link; the field contains the filename. The first ion " -#| "is a URL prefix like \"https://www.example.com/\". The second and rd " -#| "options are the width and the height in pixels." msgid "" "Displays an image and a link; the column contains the filename. The first " "option is a URL prefix like \"https://www.example.com/\". The second and " "third options are the width and the height in pixels." msgstr "" -"Afișează o imagine și un link, campul contine denumirea fisierului; prima " -"optiune este un prefix cum ar fi \"https://domain.com/\", a doua optiune " -"este latimea in pixeli, iar a treia este inaltimea." +"Afișează o imagine și o legătură; coloana conține numele fișierului. Prima " +"opțiune este un prefix URL, cum ar fi „https://www.exemplu.com/”. A doua și " +"a treia sunt lățimea și înălțimea în pixeli." #: libraries/classes/Plugins/Transformations/Abs/TextLinkTransformationsPlugin.php:33 -#, fuzzy -#| msgid "" -#| "plays a link; the field contains the filename. The first option is a " -#| "prefix like \"https://www.example.com/\". The second option is a title " -#| "the link." msgid "" "Displays a link; the column contains the filename. The first option is a URL " "prefix like \"https://www.example.com/\". The second option is a title for " "the link." msgstr "" -"Afișează un link, campul contine denumirea fisierului, prima optiune este " -"un prefix cum ar fi \"https://domain.com/\", a doua optiune este un titlu " -"pentru link." +"Afișează o legătură; coloana conține numele fișierului. Prima opțiune este " +"un prefix URL, cum ar fi „https://www.exemplu.com/”. A doua opțiune este " +"titlul legăturii." #: libraries/classes/Plugins/Transformations/Input/Text_Plain_Iptobinary.php:30 msgid "Converts an Internet network address in (IPv4/IPv6) format to binary" -msgstr "" +msgstr "Convertește o adresă de rețea Internet în format (IPv4/IPv6) la binar" #: libraries/classes/Plugins/Transformations/Input/Text_Plain_JsonEditor.php:30 msgid "Syntax highlighted CodeMirror editor for JSON." -msgstr "" +msgstr "Sintaxă evidențiată în editorul CodeMirror pentru JSON." #: libraries/classes/Plugins/Transformations/Input/Text_Plain_SqlEditor.php:30 msgid "Syntax highlighted CodeMirror editor for SQL." -msgstr "" +msgstr "Sintaxă evidențiată în editorul CodeMirror pentru SQL." #: libraries/classes/Plugins/Transformations/Input/Text_Plain_XmlEditor.php:30 msgid "Syntax highlighted CodeMirror editor for XML (and HTML)." -msgstr "" +msgstr "Sintaxă evidențiată în editorul CodeMirror pentru XML (și HTML)." #: libraries/classes/Plugins/Transformations/Output/Text_Plain_Binarytoip.php:30 msgid "" "Converts an Internet network address stored as a binary string into a string " "in Internet standard (IPv4/IPv6) format." msgstr "" +"Convertește o adresă de rețea Internet stocată ca un șir binar într-un șir " +"în format standard pentru Internet (IPv4/IPv6)." #: libraries/classes/Plugins/Transformations/Output/Text_Plain_Json.php:47 -#, fuzzy -#| msgid "Formats text as SQL query with syntax highlighting." msgid "Formats text as JSON with syntax highlighting." -msgstr "Formatează textul ca interogare SQL cu evidențierea sintaxei." +msgstr "Formatează textul ca JSON cu evidențierea sintaxei." #: libraries/classes/Plugins/Transformations/Output/Text_Plain_Xml.php:47 -#, fuzzy -#| msgid "Formats text as SQL query with syntax highlighting." msgid "Formats text as XML with syntax highlighting." -msgstr "Formatează textul ca interogare SQL cu evidențierea sintaxei." +msgstr "Formatează textul ca XML cu evidențierea sintaxei." #: libraries/classes/Plugins/TwoFactor/Application.php:129 -#, fuzzy -#| msgid "Authentication" msgid "Authentication Application (2FA)" -msgstr "Autentificare" +msgstr "Aplicație autentificare (2FA)" #: libraries/classes/Plugins/TwoFactor/Application.php:139 msgid "" "Provides authentication using HOTP and TOTP applications such as FreeOTP, " "Google Authenticator or Authy." msgstr "" +"Furnizează autentificarea folosind aplicațiile HOTP și TOTP, cum ar fi " +"FreeOTP, Google Authenticator sau Authy." #: libraries/classes/Plugins/TwoFactor/Key.php:186 msgid "Hardware Security Key (FIDO U2F)" -msgstr "" +msgstr "Cheie de securitate hardware (FIDO U2F)" #: libraries/classes/Plugins/TwoFactor/Key.php:196 msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F." msgstr "" +"Furnizează autentificare folosind tokenuri de securitate hardware care " +"suportă FIDO U2F." #: libraries/classes/Plugins/TwoFactor/Simple.php:52 -#, fuzzy -#| msgid "Signon authentication" msgid "Simple two-factor authentication" -msgstr "Autentificare Signon" +msgstr "Autentificare pe două niveluri simplă" #: libraries/classes/Plugins/TwoFactor/Simple.php:62 msgid "For testing purposes only!" -msgstr "" +msgstr "Numai pentru testare!" #: libraries/classes/Plugins/TwoFactorPlugin.php:70 -#, fuzzy, php-format -#| msgid "Hardware authentication failed!" +#, php-format msgid "Two-factor authentication failed: %s" -msgstr "Autentificarea hardware a eșuat!" +msgstr "Autentificarea pe două niveluri a eșuat: %s" #: libraries/classes/Plugins/TwoFactorPlugin.php:74 -#, fuzzy -#| msgid "Hardware authentication failed!" msgid "Two-factor authentication failed." -msgstr "Autentificarea hardware a eșuat!" +msgstr "Autentificarea pe două niveluri a eșuat." #: libraries/classes/Plugins/TwoFactorPlugin.php:127 msgid "No Two-Factor" -msgstr "" +msgstr "Fără două niveluri" #: libraries/classes/Plugins/TwoFactorPlugin.php:137 msgid "Login using password only." -msgstr "" +msgstr "Autentificare folosind numai parola." #: libraries/classes/PmdCommon.php:550 -#, fuzzy -#| msgid "Error: relation already exists." msgid "Error: relationship already exists." -msgstr "Eroare: relația deja există." +msgstr "Eroare: relația există deja." #: libraries/classes/PmdCommon.php:596 -#, fuzzy -#| msgid "Modifications have been saved" msgid "FOREIGN KEY relationship has been added." -msgstr "Modificările au fost salvate" +msgstr "Relația CHEIE STRĂINĂ a fost adăugată." #: libraries/classes/PmdCommon.php:602 -#, fuzzy -#| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relationship could not be added!" -msgstr "Eroare: Relația nu a fost adăugată." +msgstr "Eroare: relația CHEIE STRĂINĂ nu a putut fi adăugată!" #: libraries/classes/PmdCommon.php:607 msgid "Error: Missing index on column(s)." -msgstr "" +msgstr "Eroare: lipsește indexul pe coloană (coloane)." #: libraries/classes/PmdCommon.php:612 -#, fuzzy msgid "Error: Relational features are disabled!" -msgstr "Eroare: Relația nu a fost adăugată!" +msgstr "Eroare: funcționalitățile relaționale sunt dezactivate!" #: libraries/classes/PmdCommon.php:634 -#, fuzzy -#| msgid "Internal relation added" msgid "Internal relationship has been added." -msgstr "Relație internă adăugată" +msgstr "Relația internă a fost adăugată." #: libraries/classes/PmdCommon.php:640 -#, fuzzy -#| msgid "Error: Relation not added." msgid "Error: Internal relationship could not be added!" -msgstr "Eroare: Relația nu a fost adăugată." +msgstr "Eroare: relația internă nu a putut fi adăugată!" #: libraries/classes/PmdCommon.php:678 -#, fuzzy -#| msgid "Modifications have been saved" msgid "FOREIGN KEY relationship has been removed." -msgstr "Modificările au fost salvate" +msgstr "Relația CHEIE STRĂINĂ a fost înlăturată." #: libraries/classes/PmdCommon.php:684 -#, fuzzy -#| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relationship could not be removed!" -msgstr "Eroare: Relația nu a fost adăugată." +msgstr "Eroare: relația CHEIE STRĂINĂ nu a putut fi înlăturată!" #: libraries/classes/PmdCommon.php:711 -#, fuzzy -#| msgid "Error: Relation not added." msgid "Error: Internal relationship could not be removed!" -msgstr "Eroare: Relația nu a fost adăugată." +msgstr "Eroare: relația internă nu a putut fi înlăturată!" #: libraries/classes/PmdCommon.php:715 -#, fuzzy -#| msgid "Internal relation added" msgid "Internal relationship has been removed." -msgstr "Relație internă adăugată" +msgstr "Relația internă a fost înlăturată." #: libraries/classes/RecentFavoriteTable.php:139 -#, fuzzy msgid "Could not save recent table!" -msgstr "Nu s-a putut salva tabelul recent!" +msgstr "Nu am putut salva tabelul recent!" #: libraries/classes/RecentFavoriteTable.php:143 -#, fuzzy msgid "Could not save favorite table!" -msgstr "Nu s-a putut salva tabelul favorit!" +msgstr "Nu am putut salva tabelul favorit!" #: libraries/classes/RecentFavoriteTable.php:213 #: templates/database/structure/favorite_anchor.twig:4 -#, fuzzy msgid "Remove from Favorites" -msgstr "Elimină de la favorite" +msgstr "Înlătură din favorite" #: libraries/classes/RecentFavoriteTable.php:235 -#, fuzzy msgid "There are no recent tables." -msgstr "Nu există tabele recente." +msgstr "Nu există niciun tabel recent." #: libraries/classes/RecentFavoriteTable.php:236 -#, fuzzy msgid "There are no favorite tables." -msgstr "Nu există tabele favorite." +msgstr "Nu există niciun tabel favorit." #: libraries/classes/RecentFavoriteTable.php:251 -#, fuzzy msgid "Recent tables" msgstr "Tabele recente" #: libraries/classes/RecentFavoriteTable.php:253 -#, fuzzy msgid "Recent" msgstr "Recente" #: libraries/classes/RecentFavoriteTable.php:257 -#, fuzzy msgid "Favorites" msgstr "Favorite" #: libraries/classes/Relation.php:105 -#, fuzzy msgid "not OK" -msgstr "Nu este bine" +msgstr "nu este OK" #: libraries/classes/Relation.php:109 -#, fuzzy -#| msgid "OK" msgctxt "Correctly working" msgid "OK" -msgstr "E bine" +msgstr "OK" #: libraries/classes/Relation.php:112 -#, fuzzy msgid "Enabled" msgstr "Activat" #: libraries/classes/Relation.php:116 -#, fuzzy -#| msgid "Modifications have been saved" msgid "Configuration of pmadb…" -msgstr "Modificările au fost salvate" +msgstr "Configurarea pmadb…" #: libraries/classes/Relation.php:120 libraries/classes/Relation.php:156 -#, fuzzy msgid "General relation features" -msgstr "Facilități generale" +msgstr "Funcționalități generale relații" #: libraries/classes/Relation.php:167 -#, fuzzy msgid "Display Features" -msgstr "Arată facilitățile" +msgstr "Afișează funcționalități" #: libraries/classes/Relation.php:184 -#, fuzzy -#| msgid "Creation of PDFs" msgid "Designer and creation of PDFs" -msgstr "Creare PDF" +msgstr "Designer și crearea de PDF-uri" #: libraries/classes/Relation.php:195 -#, fuzzy msgid "Displaying Column Comments" -msgstr "Arată comentariile coloanei" +msgstr "Afișez comentarii coloană" #: libraries/classes/Relation.php:201 -#, fuzzy msgid "Browser transformation" msgstr "Transformare navigator" #: libraries/classes/Relation.php:208 -#, fuzzy -#| msgid "" -#| "Please see the documentation on how to update your column_comments table." msgid "Please see the documentation on how to update your column_info table." msgstr "" -"Parcurgeti documentatia pentru modul de updatare a Column_comments Table." +"Te rog vezi documentația despre modul de actualizare a tabelului tău " +"column_info." #: libraries/classes/Relation.php:224 libraries/classes/SqlQueryForm.php:401 -#, fuzzy msgid "Bookmarked SQL query" -msgstr "Comandă SQL salvată" +msgstr "Interogare SQL marcată cu semn de carte" #: libraries/classes/Relation.php:235 -#, fuzzy msgid "SQL history" msgstr "Istoric SQL" #: libraries/classes/Relation.php:246 msgid "Persistent recently used tables" -msgstr "" +msgstr "Tabele persistente folosite recent" #: libraries/classes/Relation.php:257 -#, fuzzy -#| msgid "There are no favorite tables." msgid "Persistent favorite tables" -msgstr "Nu există tabele favorite." +msgstr "Tabele persistente favorite" #: libraries/classes/Relation.php:268 msgid "Persistent tables' UI preferences" -msgstr "" +msgstr "Preferințe UI pentru tabele persistente" #: libraries/classes/Relation.php:290 msgid "User preferences" -msgstr "" +msgstr "Preferințe utilizator" #: libraries/classes/Relation.php:307 -#, fuzzy -#| msgid "Configuration file" msgid "Configurable menus" -msgstr "Fișier de configurare" +msgstr "Meniuri configurabile" #: libraries/classes/Relation.php:318 -#, fuzzy msgid "Hide/show navigation items" -msgstr "Personalizează cadrul principal" +msgstr "Ascunde/arată elementele de navigare" #: libraries/classes/Relation.php:329 msgid "Saving Query-By-Example searches" -msgstr "" +msgstr "Salvez căutările interogare după exemplu" #: libraries/classes/Relation.php:340 msgid "Managing Central list of columns" -msgstr "" +msgstr "Administrez lista centrală a coloanelor" #: libraries/classes/Relation.php:351 -#, fuzzy -#| msgid "Remember table's sorting" msgid "Remembering Designer Settings" -msgstr "Reține sortarea tabelei" +msgstr "Memorez setările pentru designer" #: libraries/classes/Relation.php:362 -#, fuzzy -#| msgid "Invalid export type" msgid "Saving export templates" -msgstr "Tip invalid de export" +msgstr "Salvez șabloanele de export" #: libraries/classes/Relation.php:370 msgid "Quick steps to set up advanced features:" -msgstr "" +msgstr "Pași rapizi pentru a inițializa funcționalitățile avansate:" #: libraries/classes/Relation.php:376 #, php-format msgid "Create the needed tables with the %screate_tables.sql." -msgstr "" +msgstr "Creează tabelele necesare cu %screate_tables.sql." #: libraries/classes/Relation.php:381 msgid "Create a pma user and give access to these tables." -msgstr "" +msgstr "Creează un utilizator pma și dă acces la aceste tabele." #: libraries/classes/Relation.php:384 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" +"Activează funcționalități avansate în fișierul de configurare " +"(config.inc.php), de exemplu începând cu " +"config.sample.inc.php." #: libraries/classes/Relation.php:389 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" +"Reautentifică-te în phpMyAdmin pentru a încărca fișierul de configurare " +"actualizat." #: libraries/classes/Relation.php:1704 -#, fuzzy msgid "no description" -msgstr "Nu există descriere" +msgstr "nicio descriere" #: libraries/classes/Relation.php:1895 msgid "" @@ -12221,68 +10383,63 @@ msgid "" "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" +"Nu ai privilegiile necesare pentru a crea o bază de date numită „phpmyadmin”" +". Poți merge la fila „Operații” a oricărei baze de date pentru a inițializa " +"acolo spațiul de stocare pentru configurarea phpMyAdmin." #: libraries/classes/Relation.php:2010 -#, fuzzy, php-format -#| msgid "Missing phpMyAdmin configuration storage tables" +#, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." -msgstr "Tabele de stocare a configurării phpMyAdmin absente" +msgstr "" +"%sCreează%s o bază de date numită „phpMyAdmin” și inițializează spațiul de " +"stocare pentru configurarea phpMyAdmin acolo." #: libraries/classes/Relation.php:2018 -#, fuzzy, php-format -#| msgid "Missing phpMyAdmin configuration storage tables" +#, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." -msgstr "Tabele de stocare a configurării phpMyAdmin absente" +msgstr "" +"%sCreează%s spațiul de stocare pentru configurarea phpMyAdmin în baza de " +"date curentă." #: libraries/classes/Relation.php:2026 -#, fuzzy, php-format -#| msgid "Missing phpMyAdmin configuration storage tables" +#, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." -msgstr "Tabele de stocare a configurării phpMyAdmin absente" +msgstr "" +"%sCreează%s tabelele spațiului de stocare pentru configurarea phpMyAdmin " +"care lipsesc." #: libraries/classes/ReplicationGui.php:58 #: libraries/classes/ReplicationGui.php:357 #: templates/server/databases/table_header.twig:32 msgid "Master replication" -msgstr "" +msgstr "Replicare master" #: libraries/classes/ReplicationGui.php:59 -#, fuzzy msgid "This server is configured as master in a replication process." msgstr "Acest server este configurat ca master într-un proces de replicare." #: libraries/classes/ReplicationGui.php:62 #: libraries/classes/Server/Status/Data.php:168 -#, fuzzy msgid "Show master status" -msgstr "Afișați status master" +msgstr "Arată stare master" #: libraries/classes/ReplicationGui.php:67 -#, fuzzy msgid "Show connected slaves" -msgstr "Afișați sclavi conectați" +msgstr "Arată sclavi conectați" #: libraries/classes/ReplicationGui.php:78 #: libraries/classes/ReplicationGui.php:705 msgid "Add slave replication user" -msgstr "" +msgstr "Adaugă utilizator de replicare slav" #: libraries/classes/ReplicationGui.php:100 -#, fuzzy msgid "Master configuration" msgstr "Configurare master" #: libraries/classes/ReplicationGui.php:102 -#, fuzzy -#| msgid "" -#| "This server is not configured as master server in a replication process. " -#| "You can choose from either replicating all databases and ignoring certain " -#| "(useful if you want to replicate majority of databases) or you can choose " -#| "to ignore all databases by default and allow only certain databases to be " -#| "replicated. Please select the mode:" msgid "" "This server is not configured as a master server in a replication process. " "You can choose from either replicating all databases and ignoring some of " @@ -12290,119 +10447,104 @@ msgid "" "can choose to ignore all databases by default and allow only certain " "databases to be replicated. Please select the mode:" msgstr "" -"Acest server nu este configurat ca master într-un proces de duplicare. " -"Puteți alege dintre fie a duplica toate bazele de date și a ignora doar " -"unele (util în cazul în care doriți să duplicați majoritatea bazelor de " -"date), fie a ignora toate bazele de date implicit și a permite doar " -"anumitora să fie duplicate. Va rugăm sa selectați modul:" +"Acest server nu este configurat ca un master într-un proces de replicare. " +"Poți alege fie între replicarea tuturor bazele de date și ignorarea unora " +"dintre ele (util dacă vrei să ai duplicate după majoritatea bazelor de date) " +"ori fie să ignori implicit toate bazele de date și să permiți să fie " +"replicate numai anumite baze de date. Te rog selectează modul:" #: libraries/classes/ReplicationGui.php:111 msgid "Replicate all databases; Ignore:" -msgstr "" +msgstr "Fă duplicate pentru toate bazele de date; ignoră:" #: libraries/classes/ReplicationGui.php:113 msgid "Ignore all databases; Replicate:" -msgstr "" +msgstr "Ignoră toate bazele de date; fă duplicate:" #: libraries/classes/ReplicationGui.php:117 -#, fuzzy msgid "Please select databases:" -msgstr "Selectați baza de date" +msgstr "Te rog selectează bazele de date:" #: libraries/classes/ReplicationGui.php:121 -#, fuzzy msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -"Acum, adăugați următoarele linii la sfârșitul secțiunii [mysqld] în fișierul " -"dumneavoastră my.cnf, după care vă rugăm să restartați server-ul MySQL." +"Acum, adaugă următoarele linii la sfârșitul secțiunii [mysqld] în my.cnf și " +"apoi te rog repornește serverul MySQL." #: libraries/classes/ReplicationGui.php:126 -#, fuzzy 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 "" -"După ce ați restartat server-ul MySQL, vă rugăm să apăsați butonul Go. Apoi " -"ar trebui să vedeți un mesaj care vă informează că acest server este " +"După ce ai repornit serverul MySQL, te rog dă clic pe butonul Execută. Apoi " +"ar trebui să vezi un mesaj care te informează că acest server este " "configurat ca master." #: libraries/classes/ReplicationGui.php:153 #: templates/server/databases/table_header.twig:35 msgid "Slave replication" -msgstr "" +msgstr "Replicare sclav" #: libraries/classes/ReplicationGui.php:161 -#, fuzzy msgid "Master connection:" -msgstr "Comprimă conexiunea" +msgstr "Conexiune master:" #: libraries/classes/ReplicationGui.php:228 -#, fuzzy msgid "Slave SQL Thread not running!" -msgstr "Thread-ul SQL slave nu rulează!" +msgstr "Firul de execuție SQL sclav nu rulează!" #: libraries/classes/ReplicationGui.php:233 -#, fuzzy msgid "Slave IO Thread not running!" -msgstr "Thread-ul IO slave nu rulează!" +msgstr "Firul de execuție IO sclav nu rulează!" #: libraries/classes/ReplicationGui.php:245 -#, fuzzy msgid "" "Server is configured as slave in a replication process. Would you like to:" -msgstr "" -"Server-ul este configurat ca slave într-un proces de replicare. Doriți să:" +msgstr "Serverul este configurat ca sclav într-un proces de replicare. Vrei să:" #: libraries/classes/ReplicationGui.php:251 msgid "See slave status table" -msgstr "" +msgstr "Vezi tabel stare sclav" #: libraries/classes/ReplicationGui.php:256 msgid "Control slave:" -msgstr "" +msgstr "Sclav de control:" #: libraries/classes/ReplicationGui.php:262 -#, fuzzy msgid "Full start" -msgstr "Tot textul" +msgstr "Pornire totală" #: libraries/classes/ReplicationGui.php:263 -#, fuzzy msgid "Full stop" -msgstr "Tot textul" +msgstr "Oprire totală" #: libraries/classes/ReplicationGui.php:266 msgid "Reset slave" -msgstr "" +msgstr "Resetează sclavii" #: libraries/classes/ReplicationGui.php:269 -#, fuzzy -#| msgid "Structure only" msgid "Start SQL Thread only" -msgstr "Numai structura" +msgstr "Pornește numai firul de execuție SQL" #: libraries/classes/ReplicationGui.php:272 msgid "Stop SQL Thread only" -msgstr "" +msgstr "Oprește numai firul de execuție SQL" #: libraries/classes/ReplicationGui.php:276 -#, fuzzy -#| msgid "Structure only" msgid "Start IO Thread only" -msgstr "Numai structura" +msgstr "Pornește numai firul de execuție IO" #: libraries/classes/ReplicationGui.php:279 msgid "Stop IO Thread only" -msgstr "" +msgstr "Oprește numai firul de execuție IO" #: libraries/classes/ReplicationGui.php:288 #: libraries/classes/ReplicationGui.php:415 -#, fuzzy msgid "Change or reconfigure master server" -msgstr "Schimbați sau reconfigurați server-ul master" +msgstr "Schimbă sau reconfigurează serverul master" #: libraries/classes/ReplicationGui.php:299 #, php-format @@ -12410,62 +10552,59 @@ msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" +"Acest server nu este configurat ca sclav într-un proces de replicare. Vrei " +"să-l configurezi?" #: libraries/classes/ReplicationGui.php:321 msgid "Error management:" -msgstr "" +msgstr "Administrare erori:" #: libraries/classes/ReplicationGui.php:324 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" +"Omiterea erorilor ar putea duce la o desincronizare între master și sclav!" #: libraries/classes/ReplicationGui.php:328 msgid "Skip current error" -msgstr "" +msgstr "Omite eroare curentă" #: libraries/classes/ReplicationGui.php:333 #, php-format msgid "Skip next %s errors." -msgstr "" +msgstr "Sari peste următoarele %s erori." #: libraries/classes/ReplicationGui.php:360 -#, fuzzy, php-format +#, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -"Acest server nu este configurat ca master într-un proces de replicare. " -"Doriți să îl configurați?" +"Acest server nu este configurat ca master într-un proces de replicare. Vrei " +"să-l configurezi?" #: libraries/classes/ReplicationGui.php:393 #: templates/database/search/selection_form.twig:35 #: templates/display/export/select_options.twig:8 -#, fuzzy -#| msgid "Unselect All" msgid "Unselect all" -msgstr "Deselectează tot" +msgstr "Anulează toată selectarea" #: libraries/classes/ReplicationGui.php:414 msgid "Slave configuration" -msgstr "" +msgstr "Configurare sclav" #: libraries/classes/ReplicationGui.php:417 -#, fuzzy msgid "" "Make sure you have a unique server-id in your configuration file (my.cnf). " "If not, please add the following line into [mysqld] section:" msgstr "" -"Asigurați-vă că aveți un id al server-ului unic în fișierul de " -"configurare(my.cnf). Dacă nu, vă rugăm să adăugați următoarea linie în " -"secțiunea [mysqld]:" +"Asigură-te că ai un ID unic de server în fișierul tău de configurare (my.cnf)" +". Dacă nu, te rog adaugă următoarea linie în secțiunea [mysqld]:" #: libraries/classes/ReplicationGui.php:424 #: libraries/classes/ReplicationGui.php:795 #: libraries/classes/Server/Privileges.php:1499 -#, fuzzy -#| msgid "User name" msgid "User name:" -msgstr "Nume utilizator" +msgstr "Nume utilizator:" #: libraries/classes/ReplicationGui.php:430 #: libraries/classes/ReplicationGui.php:799 @@ -12474,7 +10613,6 @@ msgstr "Nume utilizator" #: libraries/classes/Server/Privileges.php:1526 #: libraries/classes/Server/Privileges.php:2562 #: libraries/classes/Server/Privileges.php:3533 -#, fuzzy msgid "User name" msgstr "Nume utilizator" @@ -12484,30 +10622,24 @@ msgstr "Nume utilizator" #: libraries/classes/Server/Privileges.php:1665 #: libraries/classes/Server/Privileges.php:1682 #: libraries/classes/Server/Privileges.php:3535 -#, fuzzy msgid "Password" -msgstr "Parola" +msgstr "Parolă" #: libraries/classes/ReplicationGui.php:459 -#, fuzzy -#| msgid "Port" msgid "Port:" -msgstr "Port" +msgstr "Port:" #: libraries/classes/ReplicationGui.php:543 -#, fuzzy msgid "Master status" msgstr "Stare master" #: libraries/classes/ReplicationGui.php:546 -#, fuzzy msgid "Slave status" msgstr "Stare sclav" #: libraries/classes/ReplicationGui.php:555 #: libraries/classes/Server/Status/Variables.php:227 #: templates/server/variables/variable_table_head.twig:4 -#, fuzzy msgid "Variable" msgstr "Variabil" @@ -12515,37 +10647,34 @@ msgstr "Variabil" #: libraries/classes/ReplicationGui.php:713 #: libraries/classes/ReplicationGui.php:847 #: libraries/classes/Server/Status/Processes.php:85 -#, fuzzy msgid "Host" -msgstr "Gazda" +msgstr "Gazdă" #: libraries/classes/ReplicationGui.php:647 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" +"Numai sclavii care pornit cu opțiunea --report-host=host_name sunt vizibili " +"în această listă." #: libraries/classes/ReplicationGui.php:751 #: libraries/classes/Server/Privileges.php:1600 -#, fuzzy msgid "Any host" -msgstr "Oricare gazdă" +msgstr "Orice gazdă" #: libraries/classes/ReplicationGui.php:756 #: libraries/classes/Server/Privileges.php:1608 -#, fuzzy msgid "Local" -msgstr "Local" +msgstr "Locală" #: libraries/classes/ReplicationGui.php:763 #: libraries/classes/Server/Privileges.php:1617 -#, fuzzy msgid "This Host" msgstr "Această gazdă" #: libraries/classes/ReplicationGui.php:803 #: libraries/classes/Server/Privileges.php:1510 -#, fuzzy msgid "Any user" msgstr "Oricare utilizator" @@ -12553,112 +10682,96 @@ msgstr "Oricare utilizator" #: libraries/classes/ReplicationGui.php:841 #: libraries/classes/ReplicationGui.php:870 #: libraries/classes/Server/Privileges.php:1636 -#, fuzzy -#| msgid "Use text field" msgid "Use text field:" -msgstr "Utilizare câmp text" +msgstr "Folosește câmp text:" #: libraries/classes/ReplicationGui.php:835 #: libraries/classes/Server/Privileges.php:1627 -#, fuzzy msgid "Use Host Table" -msgstr "Utilizare tabel gazde" +msgstr "Folosește tabel gazde" #: libraries/classes/ReplicationGui.php:851 #: libraries/classes/Server/Privileges.php:1653 -#, fuzzy msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -"Când tabela Host este folosită, acest câmp este ignorat și valorile din " -"tabela Host sunt folosite în schimb." +"Când tabelul Gazde este folosit, acest câmp este ignorat și sunt folosite în " +"schimb valorile stocate în tabelul Gazde." #: libraries/classes/ReplicationGui.php:882 #: libraries/classes/Server/Privileges.php:1697 -#, fuzzy msgid "Re-type" -msgstr "Re-tastează" +msgstr "Tastează din nou" #: libraries/classes/ReplicationGui.php:886 -#, fuzzy -#| msgid "Generate password" msgid "Generate password:" -msgstr "Generează parolă" +msgstr "Generează parola:" #: libraries/classes/ReplicationGui.php:918 msgid "" "Connection to server is disabled, please enable $cfg['AllowArbitraryServer'] " "in phpMyAdmin configuration." msgstr "" +"Conexiunea la server este dezactivată, te rog activează " +"$cfg['AllowArbitraryServer'] în configurarea phpMyAdmin." #: libraries/classes/ReplicationGui.php:927 -#, fuzzy msgid "Replication started successfully." -msgstr "Replicare" +msgstr "Replicare începută cu succes." #: libraries/classes/ReplicationGui.php:928 msgid "Error starting replication." -msgstr "" +msgstr "Eroare la începerea replicării." #: libraries/classes/ReplicationGui.php:931 -#, fuzzy -#| msgid "Chart generated successfully." msgid "Replication stopped successfully." -msgstr "Drepturile au fost reîncarcate cu succes." +msgstr "Replicare oprită cu succes." #: libraries/classes/ReplicationGui.php:932 msgid "Error stopping replication." -msgstr "" +msgstr "Eroare la oprirea replicării." #: libraries/classes/ReplicationGui.php:935 -#, fuzzy msgid "Replication resetting successfully." -msgstr "Replicare" +msgstr "Replicare resetată cu succes." #: libraries/classes/ReplicationGui.php:936 msgid "Error resetting replication." -msgstr "" +msgstr "Eroare la resetarea replicării." #: libraries/classes/ReplicationGui.php:939 msgid "Success." -msgstr "" +msgstr "Succes." #: libraries/classes/ReplicationGui.php:940 -#, fuzzy -#| msgid "Error" msgid "Error." -msgstr "Eroare" +msgstr "Eroare." #: libraries/classes/ReplicationGui.php:986 -#, fuzzy msgid "Unknown error" msgstr "Eroare necunoscută" #: libraries/classes/ReplicationGui.php:996 -#, fuzzy, php-format +#, php-format msgid "Unable to connect to master %s." -msgstr "Nu s-a putut realiza conexiunea la master %s." +msgstr "Nu pot face conexiunea la master %s." #: libraries/classes/ReplicationGui.php:1007 -#, fuzzy msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -"Nu s-a putut citi poziția jurnalului master. Posibilă eroare de permisiuni " -"pe master." +"Nu pot citi poziția jurnalului master. Posibilă problemă de privilegii la " +"master." #: libraries/classes/ReplicationGui.php:1025 -#, fuzzy -#| msgid "Unable to change master" msgid "Unable to change master!" -msgstr "Nu s-a putut schimba master-ul" +msgstr "Nu pot schimba master-ul!" #: libraries/classes/ReplicationGui.php:1029 -#, fuzzy, php-format -#| msgid "Master server changed successfully to %s" +#, php-format msgid "Master server changed successfully to %s." -msgstr "Server master schimbat cu succes în %s" +msgstr "Serverul master schimbat cu succes în %s." #: libraries/classes/Rte/Events.php:122 libraries/classes/Rte/Events.php:131 #: libraries/classes/Rte/Events.php:162 libraries/classes/Rte/Routines.php:240 @@ -12667,9 +10780,9 @@ msgstr "Server master schimbat cu succes în %s" #: libraries/classes/Rte/Routines.php:1492 #: libraries/classes/Rte/Triggers.php:97 libraries/classes/Rte/Triggers.php:106 #: libraries/classes/Rte/Triggers.php:138 -#, fuzzy, php-format +#, php-format msgid "The following query has failed: \"%s\"" -msgstr "Următoarea interogare a eșuat: \"%s\"" +msgstr "Următoarea interogare a eșuat: „%s”" #: libraries/classes/Rte/Events.php:126 libraries/classes/Rte/Events.php:135 #: libraries/classes/Rte/Events.php:166 libraries/classes/Rte/General.php:48 @@ -12680,84 +10793,67 @@ msgstr "Următoarea interogare a eșuat: \"%s\"" #: libraries/classes/Rte/Triggers.php:101 #: libraries/classes/Rte/Triggers.php:110 #: libraries/classes/Rte/Triggers.php:142 libraries/classes/Util.php:615 -#, fuzzy msgid "MySQL said: " msgstr "MySQL zice: " #: libraries/classes/Rte/Events.php:142 -#, fuzzy msgid "Sorry, we failed to restore the dropped event." -msgstr "Ne pare rău, nu am putut restaura evenimentul șters." +msgstr "Regretăm, nu am putut restaura evenimentul eliminat." #: libraries/classes/Rte/Events.php:149 -#, fuzzy, php-format +#, php-format msgid "Event %1$s has been modified." msgstr "Evenimentul %1$s a fost modificat." #: libraries/classes/Rte/Events.php:169 -#, fuzzy, php-format +#, php-format msgid "Event %1$s has been created." msgstr "Evenimentul %1$s a fost creat." #: libraries/classes/Rte/Events.php:183 libraries/classes/Rte/Routines.php:287 #: libraries/classes/Rte/Triggers.php:159 -#, fuzzy -#| msgid "" -#| "One or more errors have occured while processing your request:" msgid "One or more errors have occurred while processing your request:" -msgstr "" -"Una sau mai multe erori au apărut în timpul procesării cererii " -"dumneavoastră:" +msgstr "Au apărut una sau mai multe erori în timpul procesării cererii tale:" #: libraries/classes/Rte/Events.php:238 -#, fuzzy msgid "Edit event" msgstr "Editează evenimentul" #: libraries/classes/Rte/Events.php:404 libraries/classes/Rte/Routines.php:905 #: libraries/classes/Rte/Triggers.php:339 templates/view_create.twig:8 -#, fuzzy msgid "Details" msgstr "Detalii" #: libraries/classes/Rte/Events.php:407 -#, fuzzy -#| msgid "Event type" msgid "Event name" -msgstr "Tip eveniment" +msgstr "Nume eveniment" #: libraries/classes/Rte/Events.php:450 libraries/classes/Rte/Routines.php:928 -#, fuzzy, php-format +#, php-format msgid "Change to %s" -msgstr "Schimbați în %s" +msgstr "Schimbă în %s" #: libraries/classes/Rte/Events.php:456 -#, fuzzy msgid "Execute at" msgstr "Execută la" #: libraries/classes/Rte/Events.php:464 -#, fuzzy msgid "Execute every" msgstr "Execută fiecare" #: libraries/classes/Rte/Events.php:483 -#, fuzzy msgctxt "Start of recurring event" msgid "Start" -msgstr "Începutul" +msgstr "Început" #: libraries/classes/Rte/Events.php:492 -#, fuzzy msgctxt "End of recurring event" msgid "End" -msgstr "Sfârșitul" +msgstr "Sfârșit" #: libraries/classes/Rte/Events.php:506 -#, fuzzy -#| msgid "Complete inserts" msgid "On completion preserve" -msgstr "Inserări complete" +msgstr "Păstrare definitivă" #: libraries/classes/Rte/Events.php:511 libraries/classes/Rte/Routines.php:1045 #: libraries/classes/Rte/Triggers.php:399 templates/view_create.twig:45 @@ -12775,326 +10871,262 @@ msgstr "" "utilizator@numele-gazdei\" (username@hostname)" #: libraries/classes/Rte/Events.php:562 -#, fuzzy -#| msgid "You must provide an event name" msgid "You must provide an event name!" -msgstr "Trebuie să introduceți un nume de eveniment" +msgstr "Trebuie să furnizezi un nume de eveniment!" #: libraries/classes/Rte/Events.php:577 -#, fuzzy msgid "You must provide a valid interval value for the event." -msgstr "Trebuie să introduceți o valoare internă validă pentru eveniment." +msgstr "Trebuie să furnizezi o valoare validă a intervalului pentru eveniment." #: libraries/classes/Rte/Events.php:596 -#, fuzzy msgid "You must provide a valid execution time for the event." -msgstr "Trebuie să introduceți un timp valid de execuție pentru eveniment." +msgstr "Trebuie să furnizezi un timp valid de execuție pentru eveniment." #: libraries/classes/Rte/Events.php:600 -#, fuzzy msgid "You must provide a valid type for the event." -msgstr "Trebuie să introduceți un tip valid pentru eveniment." +msgstr "Trebuie să furnizezi un tip valid de eveniment." #: libraries/classes/Rte/Events.php:624 -#, fuzzy msgid "You must provide an event definition." -msgstr "Trebuie să introduceți o definiție pentru eveniment." +msgstr "Trebuie să furnizezi o definiție a evenimentului." #: libraries/classes/Rte/Export.php:54 libraries/classes/Rte/General.php:84 #: libraries/classes/Rte/Routines.php:172 #: libraries/classes/Rte/Routines.php:1329 #: libraries/classes/Rte/Routines.php:1539 -#, fuzzy -#| msgid "Error in processing request" msgid "Error in processing request:" -msgstr "Eroare în procesarea cererii" +msgstr "Eroare la procesarea cererii:" #: libraries/classes/Rte/Footer.php:102 -#, fuzzy msgid "OFF" msgstr "OPRIT" #: libraries/classes/Rte/Footer.php:107 -#, fuzzy msgid "ON" msgstr "PORNIT" #: libraries/classes/Rte/Footer.php:119 -#, fuzzy msgid "Event scheduler status" -msgstr "Statutul programatorului de evenimente" +msgstr "Stare programator de evenimente" #: libraries/classes/Rte/General.php:46 -#, fuzzy msgid "The backed up query was:" -msgstr "Interogarea de rezervă era:" +msgstr "Interogarea de siguranță era:" #: libraries/classes/Rte/Routines.php:92 -#, fuzzy msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " "fail![/strong] Please use the improved 'mysqli' extension to avoid any " "problems." msgstr "" -"Folosiți extensia învechită 'mysql' a PHP, care nu este capabilă să " -"manipuleze interogări multiple. [strong]Execuția unor rutine stocate poate " -"eșua![/strong] Vă rugăm să folosiți extensia îmbunătățită 'mysqli' pentru a " +"Folosești extensia învechită „mysql” a PHP, care nu este capabilă să " +"gestioneze mai multe interogări. [strong]Execuția unor rutine stocate poate " +"eșua![/strong] Te rog folosește extensia îmbunătățită „mysqli” pentru a " "evita orice problemă." #: libraries/classes/Rte/Routines.php:143 -#, fuzzy -#| msgid "Edit mode" msgid "Edit routine" -msgstr "Regim de redactare" +msgstr "Editează rutina" #: libraries/classes/Rte/Routines.php:221 #: libraries/classes/Rte/Routines.php:1135 -#, fuzzy, php-format -#| msgid "Invalid server index: \"%s\"" +#, php-format msgid "Invalid routine type: \"%s\"" -msgstr "Index de server nevalid: „%s”" +msgstr "Tip de rutină invalid: „%s”" #: libraries/classes/Rte/Routines.php:274 -#, fuzzy, php-format -#| msgid "Table %1$s has been created." +#, php-format msgid "Routine %1$s has been created." -msgstr "Tabelul %1$s a fost creat." +msgstr "Rutina %1$s a fost creată." #: libraries/classes/Rte/Routines.php:393 -#, fuzzy msgid "Sorry, we failed to restore the dropped routine." -msgstr "Ne pare rău, am eșuat încercând să recuperăm rutina ștearsă." +msgstr "Regretăm, nu am reușit să restaurăm rutina eliminată." #: libraries/classes/Rte/Routines.php:449 -#, fuzzy, php-format -#| msgid "Routine %1$s has been modified." +#, php-format msgid "Routine %1$s has been modified. Privileges have been adjusted." -msgstr "Tabelul %1$s a fost modificat." +msgstr "Rutina %1$s a fost modificată. Privilegiile au fost ajustate." #: libraries/classes/Rte/Routines.php:454 -#, fuzzy, php-format +#, php-format msgid "Routine %1$s has been modified." -msgstr "Tabelul %1$s a fost modificat." +msgstr "Rutina %1$s a fost modificată." #: libraries/classes/Rte/Routines.php:908 -#, fuzzy -#| msgid "Routines" msgid "Routine name" -msgstr "Rutine" +msgstr "Nume rutină" #: libraries/classes/Rte/Routines.php:934 -#, fuzzy msgid "Parameters" -msgstr "Parametrii" +msgstr "Parametri" #: libraries/classes/Rte/Routines.php:942 -#, fuzzy -#| msgid "Direct links" msgid "Direction" -msgstr "Legături directe" +msgstr "Direcție" #: libraries/classes/Rte/Routines.php:963 -#, fuzzy msgid "Add parameter" -msgstr "Adăugați parametru" +msgstr "Adaugă parametru" #: libraries/classes/Rte/Routines.php:967 -#, fuzzy msgid "Remove last parameter" -msgstr "Ștergeți ultimul parametru" +msgstr "Înlătură ultimul parametru" #: libraries/classes/Rte/Routines.php:972 -#, fuzzy msgid "Return type" -msgstr "Tipul întors" +msgstr "Tip de revenire" #: libraries/classes/Rte/Routines.php:978 -#, fuzzy -#| msgid "Length/Values" msgid "Return length/values" -msgstr "Lungime/Setare" +msgstr "Lungime/valori revenire" #: libraries/classes/Rte/Routines.php:984 -#, fuzzy -#| msgid "Table options" msgid "Return options" -msgstr "Opțiuni tabel" +msgstr "Opțiuni revenire" #: libraries/classes/Rte/Routines.php:1016 -#, fuzzy msgid "Is deterministic" -msgstr "Este determinist" +msgstr "Este determinat" #: libraries/classes/Rte/Routines.php:1035 msgid "" "You do not have sufficient privileges to perform this operation; Please " "refer to the documentation for more details" msgstr "" +"Nu ai suficiente privilegii pentru a efectua această operațiune; Te rog " +"consultă documentația pentru mai multe detalii" #: libraries/classes/Rte/Routines.php:1050 -#, fuzzy msgid "Security type" msgstr "Tip de securitate" #: libraries/classes/Rte/Routines.php:1059 -#, fuzzy msgid "SQL data access" -msgstr "Acces date SQL" +msgstr "Acces la date SQL" #: libraries/classes/Rte/Routines.php:1142 -#, fuzzy -#| msgid "You must provide a routine name" msgid "You must provide a routine name!" -msgstr "Trebuie să introduceți un nume de rutină" +msgstr "Trebuie să furnizezi un nume de rutină!" #: libraries/classes/Rte/Routines.php:1176 -#, fuzzy, php-format +#, php-format msgid "Invalid direction \"%s\" given for parameter." -msgstr "Direcție invalidă \"%s\" dată pentru parametru." +msgstr "Direcție dată „%s” este invalidă pentru parametru." #: libraries/classes/Rte/Routines.php:1198 #: libraries/classes/Rte/Routines.php:1260 -#, fuzzy msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -"Trebuie să oferiți lungime/valori pentru parametrii de tipul ENUM, SET, " -"VARCHAR și VARBINARY ai rutinei." +"Trebuie să furnizezi lungimea/valorile pentru parametrii rutinei de tipul " +"ENUM, SET, VARCHAR și VARBINARY." #: libraries/classes/Rte/Routines.php:1224 -#, fuzzy msgid "You must provide a name and a type for each routine parameter." msgstr "" -"Trebuie să introduceți un nume și un tip pentru fiecare parametru al rutinei." +"Trebuie să furnizezi un nume și un tip pentru fiecare parametru al rutinei." #: libraries/classes/Rte/Routines.php:1243 -#, fuzzy msgid "You must provide a valid return type for the routine." -msgstr "Rutina trebuie să întoarcă un tip valid." +msgstr "Trebuie să furnizezi un tip de revenire valid pentru rutină." #: libraries/classes/Rte/Routines.php:1303 -#, fuzzy msgid "You must provide a routine definition." -msgstr "Trebuie să introduceți o definiție a rutinei." +msgstr "Trebuie să furnizezi o definiție a rutinei." #: libraries/classes/Rte/Routines.php:1415 -#, fuzzy, php-format +#, php-format msgid "Execution results of routine %s" -msgstr "Rezultatele execuției rutinei %s" +msgstr "Rezultate de execuție ale rutinei %s" #: libraries/classes/Rte/Routines.php:1470 -#, fuzzy, 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" +#, 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 rând afectat de ultima declarație din cadrul procedurii" -msgstr[1] "%d rânduri afectate de ultima declarație din cadrul procedurii" -msgstr[2] "%d rânduri afectate de ultima declarație din cadrul procedurii" +msgstr[0] "Un rând afectat de ultima declarație din cadrul procedurii." +msgstr[1] "%d rânduri afectate de ultima declarație din cadrul procedurii." +msgstr[2] "%d de rânduri afectate de ultima declarație din cadrul procedurii." #: libraries/classes/Rte/Routines.php:1527 #: libraries/classes/Rte/Routines.php:1534 -#, fuzzy msgid "Execute routine" -msgstr "Executați rutina" +msgstr "Execută rutina" #: libraries/classes/Rte/Routines.php:1613 #: libraries/classes/Rte/Routines.php:1616 -#, fuzzy msgid "Routine parameters" -msgstr "Parametrii rutinei" +msgstr "Parametri rutină" #: libraries/classes/Rte/RteList.php:91 -#, fuzzy msgid "Returns" -msgstr "Întoarce" +msgstr "Reveniri" #: libraries/classes/Rte/Triggers.php:118 msgid "Sorry, we failed to restore the dropped trigger." -msgstr "" +msgstr "Regret, restaurarea declanșatorului eliminat a eșuat." #: libraries/classes/Rte/Triggers.php:125 -#, fuzzy, php-format -#| msgid "Table %s has been dropped." +#, php-format msgid "Trigger %1$s has been modified." -msgstr "Tabelul %s a fost aruncat" +msgstr "Declanșatorul %1$s a fost modificat." #: libraries/classes/Rte/Triggers.php:145 -#, fuzzy, php-format -#| msgid "Table %1$s has been created." +#, php-format msgid "Trigger %1$s has been created." -msgstr "Tabelul %1$s a fost creat." +msgstr "Declanșatorul %1$s a fost creat." #: libraries/classes/Rte/Triggers.php:221 -#, fuzzy -#| msgid "Add a new server" msgid "Edit trigger" -msgstr "Adaugă un server nou" +msgstr "Editează declanșatorul" #: libraries/classes/Rte/Triggers.php:342 -#, fuzzy -#| msgid "Triggers" msgid "Trigger name" -msgstr "Declanșatori" +msgstr "Nume declanșator" #: libraries/classes/Rte/Triggers.php:365 -#, fuzzy -#| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Timp" #: libraries/classes/Rte/Triggers.php:445 -#, fuzzy -#| msgid "You must provide a routine name" msgid "You must provide a trigger name!" -msgstr "Trebuie să introduceți un nume de rutină" +msgstr "Trebuie să furnizezi un nume de declanșator!" #: libraries/classes/Rte/Triggers.php:452 -#, fuzzy -#| msgid "You must provide a valid type for the event." msgid "You must provide a valid timing for the trigger!" -msgstr "Trebuie să introduceți un tip valid pentru eveniment." +msgstr "Trebuie să furnizezi o sincronizare validă pentru declanșator!" #: libraries/classes/Rte/Triggers.php:459 -#, fuzzy -#| msgid "You must provide a valid return type for the routine." msgid "You must provide a valid event for the trigger!" -msgstr "Rutina trebuie să întoarcă un tip valid." +msgstr "Trebuie să furnizezi un eveniment valid pentru declanșator!" #: libraries/classes/Rte/Triggers.php:467 -#, fuzzy -#| msgid "Invalid table name" msgid "You must provide a valid table name!" -msgstr "Denumire de tabel nevalidă" +msgstr "Trebuie să furnizezi un nume de tabel valid!" #: libraries/classes/Rte/Triggers.php:473 msgid "You must provide a trigger definition." -msgstr "" +msgstr "Trebuie să furnizezi o definiție pentru declanșator." #: libraries/classes/Rte/Words.php:32 -#, fuzzy -#| msgid "Add %s field(s)" msgid "Add routine" -msgstr "Adaugă %s câmp(uri)" +msgstr "Adaugă rutină" #: libraries/classes/Rte/Words.php:34 -#, fuzzy, php-format +#, php-format msgid "Export of routine %s" -msgstr "Import fișiere" +msgstr "Exportul rutinei %s" #: libraries/classes/Rte/Words.php:35 -#, fuzzy msgid "routine" msgstr "rutină" #: libraries/classes/Rte/Words.php:37 -#, fuzzy -#| msgid "You do not have the necessary privileges to create a routine" msgid "You do not have the necessary privileges to create a routine." -msgstr "Nu dețineți privilegiile necesare pentru a crea o rutină" +msgstr "Nu ai privilegiile necesare pentru a crea o rutină." #: libraries/classes/Rte/Words.php:40 #, php-format @@ -13102,6 +11134,8 @@ msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " "necessary privileges to edit this routine." msgstr "" +"Nicio rutină cu numele %1$s găsită în baza de date %2$s. S-ar putea să fie " +"blocate privilegiile necesare pentru a edita această rutină." #: libraries/classes/Rte/Words.php:44 #, php-format @@ -13109,518 +11143,430 @@ msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " "necessary privileges to view/export this routine." msgstr "" +"Nicio rutină cu numele %1$s găsită în baza de date %2$s. S-ar putea să fie " +"blocate privilegiile necesare pentru a vedea/exporta această rutină." #: libraries/classes/Rte/Words.php:47 -#, fuzzy, php-format -#| msgid "No routine with name %1$s found in database %2$s" +#, php-format msgid "No routine with name %1$s found in database %2$s." -msgstr "Nicio rutină cu numele %1$s nu a fost gasită în baza de date %2$s" +msgstr "Nicio rutină cu numele %1$s găsită în baza de date %2$s." #: libraries/classes/Rte/Words.php:48 -#, fuzzy msgid "There are no routines to display." -msgstr "Nu există rutine de afișat." +msgstr "Nu există nicio rutină de afișat." #: libraries/classes/Rte/Words.php:54 -#, fuzzy -#| msgid "Add a new server" msgid "Add trigger" -msgstr "Adaugă un server nou" +msgstr "Adaugă declanșator" #: libraries/classes/Rte/Words.php:56 -#, fuzzy, php-format -#| msgid "Export triggers" +#, php-format msgid "Export of trigger %s" -msgstr "Modul de export" +msgstr "Exportul declanșatorului %s" #: libraries/classes/Rte/Words.php:57 -#, fuzzy -#| msgid "Triggers" msgid "trigger" -msgstr "Declanșatori" +msgstr "declanșator" #: libraries/classes/Rte/Words.php:59 -#, fuzzy -#| msgid "You don't have sufficient privileges to be here right now!" msgid "You do not have the necessary privileges to create a trigger." -msgstr "Nu dețineți drepturi de acces pentru a vă afla aici!" +msgstr "Nu ai privilegiile necesare pentru a crea un declanșator." #: libraries/classes/Rte/Words.php:61 -#, fuzzy, php-format -#| msgid "No tables found in database." +#, php-format msgid "No trigger with name %1$s found in database %2$s." -msgstr "Nu s-a găsit nici un tabel în baza de date." +msgstr "Niciun declanșator cu numele %1$s găsit în baza de date %2$s." #: libraries/classes/Rte/Words.php:62 -#, fuzzy msgid "There are no triggers to display." -msgstr "Tabelele urmărite" +msgstr "Nu există niciun declanșator de afișat." #: libraries/classes/Rte/Words.php:68 -#, fuzzy -#| msgid "Add a new server" msgid "Add event" -msgstr "Adaugă un server nou" +msgstr "Adaugă eveniment" #: libraries/classes/Rte/Words.php:70 -#, fuzzy, php-format +#, php-format msgid "Export of event %s" -msgstr "Modul de export" +msgstr "Exportul evenimentului %s" #: libraries/classes/Rte/Words.php:71 -#, fuzzy -#| msgid "Event" msgid "event" -msgstr "Eveniment" +msgstr "eveniment" #: libraries/classes/Rte/Words.php:73 -#, fuzzy -#| msgid "You don't have sufficient privileges to be here right now!" msgid "You do not have the necessary privileges to create an event." -msgstr "Nu dețineți drepturi de acces pentru a vă afla aici!" +msgstr "Nu ai privilegiile necesare pentru a crea un eveniment." #: libraries/classes/Rte/Words.php:75 -#, fuzzy, php-format -#| msgid "No tables found in database." +#, php-format msgid "No event with name %1$s found in database %2$s." -msgstr "Nu s-a găsit nici un tabel în baza de date." +msgstr "Niciun eveniment cu numele %1$s găsit în baza de date %2$s." #: libraries/classes/Rte/Words.php:76 -#, fuzzy msgid "There are no events to display." -msgstr "Nu există evenimente de afișat." +msgstr "Nu există niciun eveniment de afișat." #: libraries/classes/SavedSearches.php:261 -#, fuzzy msgid "Please provide a name for this bookmarked search." msgstr "" -"Vă rugăm să furnizaţi un nume pentru această căutare marcată ca semn de " -"carte." +"Te rog furnizează un nume pentru această căutare marcată cu semn de carte." #: libraries/classes/SavedSearches.php:276 -#, fuzzy msgid "Missing information to save the bookmarked search." -msgstr "Lipsesc informații pentru a putea salva această căutare." +msgstr "" +"Lipsesc informații pentru a putea salva căutarea marcată cu semn de carte." #: libraries/classes/SavedSearches.php:298 #: libraries/classes/SavedSearches.php:335 -#, fuzzy msgid "An entry with this name already exists." -msgstr "O înregistrare cu acest nume deja există." +msgstr "Există deja o intrare cu acest nume." #: libraries/classes/SavedSearches.php:362 -#, fuzzy msgid "Missing information to delete the search." -msgstr "Lipsesc informații pentru a putea șterge căutarea." +msgstr "Lipsesc informațiile pentru a șterge căutarea." #: libraries/classes/SavedSearches.php:390 -#, fuzzy msgid "Missing information to load the search." -msgstr "Lipsesc informații pentru a putea încărca căutarea." +msgstr "Lipsesc informațiile pentru a încărca căutarea." #: libraries/classes/SavedSearches.php:409 -#, fuzzy msgid "Error while loading the search." msgstr "Eroare în timpul încărcării căutării." #: libraries/classes/Server/Privileges.php:222 server_privileges.php:118 -#, fuzzy msgid "No privileges." -msgstr "Fără drepturi." +msgstr "Niciun privilegiu." #: libraries/classes/Server/Privileges.php:231 server_privileges.php:63 -#, fuzzy msgid "Includes all privileges except GRANT." -msgstr "Include toate privilegiile, excluzand GRANT." +msgstr "Include toate privilegiile, cu excepția ACORDĂ." #: libraries/classes/Server/Privileges.php:304 #: libraries/classes/Server/Privileges.php:1036 #: libraries/classes/Server/Privileges.php:1210 server_privileges.php:107 -#, fuzzy msgid "Allows reading data." msgstr "Permite citirea datelor." #: libraries/classes/Server/Privileges.php:309 #: libraries/classes/Server/Privileges.php:1041 #: libraries/classes/Server/Privileges.php:1211 server_privileges.php:83 -#, fuzzy msgid "Allows inserting and replacing data." msgstr "Permite inserarea și înlocuirea datelor." #: libraries/classes/Server/Privileges.php:314 #: libraries/classes/Server/Privileges.php:1046 #: libraries/classes/Server/Privileges.php:1212 server_privileges.php:117 -#, fuzzy msgid "Allows changing data." -msgstr "Permite schimbarea datelor." +msgstr "Permite modificarea datelor." #: libraries/classes/Server/Privileges.php:319 #: libraries/classes/Server/Privileges.php:1213 server_privileges.php:72 -#, fuzzy msgid "Allows deleting data." -msgstr "Permite stergere de date." +msgstr "Permite ștergerea datelor." #: libraries/classes/Server/Privileges.php:324 #: libraries/classes/Server/Privileges.php:1239 server_privileges.php:66 -#, fuzzy msgid "Allows creating new databases and tables." -msgstr "Permite crearea de noi baze de date și tabele." +msgstr "Permite crearea de baze de date și tabele noi." #: libraries/classes/Server/Privileges.php:329 #: libraries/classes/Server/Privileges.php:1251 server_privileges.php:73 -#, fuzzy msgid "Allows dropping databases and tables." -msgstr "Permite stergerea unei baze de date sau a unor tabele." +msgstr "Permite eliminarea bazelor de date și tabelelor." #: libraries/classes/Server/Privileges.php:334 #: libraries/classes/Server/Privileges.php:1335 server_privileges.php:101 -#, fuzzy msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -"Permite reîncărcarea setărilor de server și golirea memoriei cache a " +"Permite reîncărcarea setărilor serverului și golirea memoriei cache a " "serverului." #: libraries/classes/Server/Privileges.php:339 #: libraries/classes/Server/Privileges.php:1339 server_privileges.php:110 -#, fuzzy msgid "Allows shutting down the server." msgstr "Permite oprirea serverului." #: libraries/classes/Server/Privileges.php:344 #: libraries/classes/Server/Privileges.php:1331 server_privileges.php:98 -#, fuzzy -#| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." -msgstr "Permite vizualizarea proceselor tuturor utilizatorilor" +msgstr "Permite vizualizarea proceselor pentru toți utilizatorii." #: libraries/classes/Server/Privileges.php:349 #: libraries/classes/Server/Privileges.php:1219 server_privileges.php:77 -#, fuzzy msgid "Allows importing data from and exporting data into files." -msgstr "" -"Permite importarea datelor in fisiere și exportarea acestora din fisiere." +msgstr "Permite importul datelor din fișiere și exportul datelor în fișiere." #: libraries/classes/Server/Privileges.php:354 #: libraries/classes/Server/Privileges.php:1051 #: libraries/classes/Server/Privileges.php:1363 server_privileges.php:99 -#, fuzzy msgid "Has no effect in this MySQL version." -msgstr "Nu are efect în această versiune MySQL." +msgstr "Nu are niciun efect în această versiune MySQL." #: libraries/classes/Server/Privileges.php:359 #: libraries/classes/Server/Privileges.php:1247 server_privileges.php:82 -#, fuzzy msgid "Allows creating and dropping indexes." -msgstr "Permite crearea și stergerea indexurilor." +msgstr "Permite crearea și eliminarea indexurilor." #: libraries/classes/Server/Privileges.php:364 #: libraries/classes/Server/Privileges.php:1245 server_privileges.php:64 -#, fuzzy msgid "Allows altering the structure of existing tables." -msgstr "Permite alterarea structurii la tabelele deja existente." +msgstr "Permite modificarea structurii tabelelor existente." #: libraries/classes/Server/Privileges.php:369 #: libraries/classes/Server/Privileges.php:1343 server_privileges.php:108 -#, fuzzy msgid "Gives access to the complete list of databases." -msgstr "Permite accesul la lista completă a bazelor de date." +msgstr "Dă acces la lista completă de baze de date." #: libraries/classes/Server/Privileges.php:375 #: libraries/classes/Server/Privileges.php:1323 server_privileges.php:112 -#, fuzzy msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -"Permite conexiuni, chiar dacă s-a atins numărul maxim de conexiuni; Necesară " -"pentru majoritatea operațiunilor administrative, cum ar fi setarea " +"Permite conexiuni, chiar dacă s-a atins numărul maxim de conexiuni; este " +"necesară pentru majoritatea operațiunilor administrative, cum ar fi setarea " "variabilelor globale sau oprirea firelor de execuție a altor utilizatori." #: libraries/classes/Server/Privileges.php:383 #: libraries/classes/Server/Privileges.php:1257 server_privileges.php:69 -#, fuzzy msgid "Allows creating temporary tables." -msgstr "Permite crearea de tabele temporare." +msgstr "Permite crearea tabelelor temporare." #: libraries/classes/Server/Privileges.php:388 #: libraries/classes/Server/Privileges.php:1359 server_privileges.php:84 -#, fuzzy msgid "Allows locking tables for the current thread." -msgstr "Permite blocarea tabelelor din firul curent de execuție." +msgstr "Permite blocarea tabelelor pentru firul de execuție curent." #: libraries/classes/Server/Privileges.php:393 #: libraries/classes/Server/Privileges.php:1372 server_privileges.php:106 -#, fuzzy msgid "Needed for the replication slaves." -msgstr "Necesară pentru „slave replication”." +msgstr "Necesară pentru sclavii de replicare." #: libraries/classes/Server/Privileges.php:398 #: libraries/classes/Server/Privileges.php:1368 server_privileges.php:104 -#, fuzzy msgid "Allows the user to ask where the slaves / masters are." -msgstr "Permite utilizatorului de a interoga locația slave/master." +msgstr "Permite utilizatorului să întrebe unde sunt serverele sclav/master." #: libraries/classes/Server/Privileges.php:403 #: libraries/classes/Server/Privileges.php:419 #: libraries/classes/Server/Privileges.php:1277 #: libraries/classes/Server/Privileges.php:1284 server_privileges.php:71 -#, fuzzy msgid "Allows creating new views." -msgstr "Permite crearea noilor viziuni." +msgstr "Permite crearea de vizualizări noi." #: libraries/classes/Server/Privileges.php:408 #: libraries/classes/Server/Privileges.php:1291 server_privileges.php:75 -#, fuzzy -#| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." -msgstr "Permite configurarea evenimentelor pentru planificatorul de evenimente" +msgstr "Permite inițializarea evenimentelor pentru programatorul de evenimente." #: libraries/classes/Server/Privileges.php:413 #: libraries/classes/Server/Privileges.php:1295 server_privileges.php:116 -#, fuzzy -#| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." -msgstr "Permite crearea și eliminarea declanșatorilor" +msgstr "Permite crearea și eliminarea declanșatorilor." #: libraries/classes/Server/Privileges.php:424 #: libraries/classes/Server/Privileges.php:430 #: libraries/classes/Server/Privileges.php:1261 server_privileges.php:109 -#, fuzzy msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "Permite executarea interogărilor SHOW CREATE VIEW." +msgstr "Permite executarea interogărilor ARATĂ CREARE VIZUALIZARE." #: libraries/classes/Server/Privileges.php:435 #: libraries/classes/Server/Privileges.php:1265 server_privileges.php:67 -#, fuzzy msgid "Allows creating stored routines." -msgstr "Permite crearea rutinelor stocate." +msgstr "Permite crearea de rutine stocate." #: libraries/classes/Server/Privileges.php:440 #: libraries/classes/Server/Privileges.php:1269 server_privileges.php:65 -#, fuzzy msgid "Allows altering and dropping stored routines." -msgstr "Permite alterarea și aruncarea rutinelor stocate." +msgstr "Permite modificarea și eliminarea rutinelor stocate." #: libraries/classes/Server/Privileges.php:445 #: libraries/classes/Server/Privileges.php:1376 server_privileges.php:70 -#, fuzzy msgid "Allows creating, dropping and renaming user accounts." -msgstr "Permite crearea, aruncarea și redenumirea conturilor de utilizator." +msgstr "Permite crearea, eliminarea și redenumirea conturilor utilizatorilor." #: libraries/classes/Server/Privileges.php:450 #: libraries/classes/Server/Privileges.php:1271 server_privileges.php:76 -#, fuzzy msgid "Allows executing stored routines." msgstr "Permite executarea rutinelor stocate." #: libraries/classes/Server/Privileges.php:726 -#, fuzzy -#| msgid "Persistent connections" msgid "Does not require SSL-encrypted connections." -msgstr "Conexiuni persistente" +msgstr "Nu necesită conexiuni criptate prin SSL." #: libraries/classes/Server/Privileges.php:742 -#, fuzzy -#| msgid "Persistent connections" msgid "Requires SSL-encrypted connections." -msgstr "Conexiuni persistente" +msgstr "Necesită conexiuni criptate prin SSL." #: libraries/classes/Server/Privileges.php:756 msgid "Requires a valid X509 certificate." -msgstr "" +msgstr "Necesită un certificat X509 valid." #: libraries/classes/Server/Privileges.php:781 msgid "Requires that a specific cipher method be used for a connection." -msgstr "" +msgstr "Necesită utilizarea unei anumite metode de cifrare pentru o conexiune." #: libraries/classes/Server/Privileges.php:794 msgid "Requires that a valid X509 certificate issued by this CA be presented." -msgstr "" +msgstr "Necesită prezentarea unui certificat X509 valid emis de acest CA." #: libraries/classes/Server/Privileges.php:807 msgid "Requires that a valid X509 certificate with this subject be presented." -msgstr "" +msgstr "Necesită prezentarea unui certificat X509 valid cu acest subiect." #: libraries/classes/Server/Privileges.php:837 server_privileges.php:89 -#, fuzzy msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -"Limiteaza numarul de comenzi care pot fi trimise de utilizator către server " -"într-o oră." +"Limitează numărul de interogări pe care utilizatorul îl poate trimite la " +"server într-o oră." #: libraries/classes/Server/Privileges.php:845 server_privileges.php:92 -#, fuzzy msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -"Limitează numărul de comenzi pentru schimbarea vreunui tabel sau vreunei " -"baze de date executabile de utilizator într-o oră." +"Limitează numărul de comenzi, care modifică orice tabel sau bază de date, pe " +"care utilizatorul îl poate executa într-o oră." #: libraries/classes/Server/Privileges.php:854 server_privileges.php:86 -#, fuzzy msgid "Limits the number of new connections the user may open per hour." msgstr "" -"Limitează numărul de noi conexiuni care pot fi deschise de utilizator într-o " -"oră." +"Limitează numărul de conexiuni noi pe care utilizatorul îl poate deschide " +"într-o oră." #: libraries/classes/Server/Privileges.php:863 server_privileges.php:96 -#, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" -"Limitează numărul conexiunilor simultane pe care le poate avea utilizatorul." +"Limitează numărul conexiunilor simultane pe care utilizatorul îl poate avea." #: libraries/classes/Server/Privileges.php:908 #: libraries/classes/Server/Privileges.php:3345 #: libraries/classes/Server/Privileges.php:3347 #: libraries/classes/Server/Privileges.php:4565 #: templates/privileges/edit_routine_privileges.twig:11 -#, fuzzy -#| msgid "Routines" msgid "Routine" -msgstr "Rutine" +msgstr "Rutină" #: libraries/classes/Server/Privileges.php:940 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" +"Permite utilizatorului care are privilegii pentru această rutină să dea " +"privilegii altor utilizatori sau să înlăture privilegiile altor utilizatori." #: libraries/classes/Server/Privileges.php:947 -#, fuzzy -#| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." -msgstr "Permite alterarea și aruncarea rutinelor stocate." +msgstr "Permite modificarea și eliminarea acestei rutine." #: libraries/classes/Server/Privileges.php:952 -#, fuzzy -#| msgid "Allows executing stored routines." msgid "Allows executing this routine." -msgstr "Permite executarea rutinelor stocate." +msgstr "Permite executarea acestei rutine." #: libraries/classes/Server/Privileges.php:1002 #: libraries/classes/Server/Privileges.php:1171 #: libraries/classes/Server/Privileges.php:3340 #: templates/privileges/privileges_summary.twig:18 -#, fuzzy msgid "Table-specific privileges" -msgstr "Drepturi specifice de tabele" +msgstr "Privilegii specifice tabelului" #: libraries/classes/Server/Privileges.php:1005 #: libraries/classes/Server/Privileges.php:1181 #: libraries/classes/Server/Privileges.php:3538 #: templates/privileges/edit_routine_privileges.twig:16 -#, fuzzy -#| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." -msgstr "Important: numele drepturilor de acces MySQL apar în engleză" +msgstr "Notă: numele privilegiilor MySQL sunt în limba engleză." #: libraries/classes/Server/Privileges.php:1145 -#, fuzzy msgid "Administration" msgstr "Administrare" #: libraries/classes/Server/Privileges.php:1165 #: libraries/classes/Server/Privileges.php:3536 -#, fuzzy msgid "Global privileges" msgstr "Privilegii globale" #: libraries/classes/Server/Privileges.php:1166 -#, fuzzy -#| msgid "global" msgid "Global" -msgstr "global" +msgstr "Globale" #: libraries/classes/Server/Privileges.php:1168 #: libraries/classes/Server/Privileges.php:3334 -#, fuzzy msgid "Database-specific privileges" -msgstr "Drepturi specifice bazei de date" +msgstr "Privilegii specifice bazei de date" #: libraries/classes/Server/Privileges.php:1240 server_privileges.php:68 -#, fuzzy msgid "Allows creating new tables." -msgstr "Permite crearea de noi tabele." +msgstr "Permite crearea de tabele noi." #: libraries/classes/Server/Privileges.php:1252 server_privileges.php:74 -#, fuzzy msgid "Allows dropping tables." -msgstr "Permite aruncarea a unei baze de date." +msgstr "Permite eliminarea tabelelor." #: libraries/classes/Server/Privileges.php:1315 -#, fuzzy msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -"Permite adaugarea utilizatorilor și drepturilor fara reincarcarea tabelelor " -"de drepturi." +"Permite adăugarea de utilizatori și privilegii fără a reîncărca tabelele de " +"privilegii." #: libraries/classes/Server/Privileges.php:1351 server_privileges.php:79 msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." msgstr "" +"Permite utilizatorului care are privilegii să dea privilegii altor " +"utilizatori sau să înlăture privilegiile altor utilizatori." #: libraries/classes/Server/Privileges.php:1429 #: libraries/classes/Server/Privileges.php:1460 -#, fuzzy -#| msgid "Cookie authentication" msgid "Native MySQL authentication" -msgstr "Autentificare Cookie" +msgstr "Autentificare nativă MySQL" #: libraries/classes/Server/Privileges.php:1462 -#, fuzzy -#| msgid "Signon authentication" msgid "SHA256 password authentication" -msgstr "Autentificare Signon" +msgstr "Autentificare cu parolă SHA256" #: libraries/classes/Server/Privileges.php:1496 #: libraries/classes/Server/Privileges.php:3102 -#, fuzzy msgid "Login Information" -msgstr "Informații de autentificare" +msgstr "Informații despre autentificare" #: libraries/classes/Server/Privileges.php:1519 #: libraries/classes/Server/Privileges.php:1677 #: templates/privileges/add_privileges_routine.twig:7 #: templates/privileges/add_privileges_table.twig:7 -#, fuzzy msgid "Use text field" -msgstr "Utilizare câmp text" +msgstr "Folosește câmp text" #: libraries/classes/Server/Privileges.php:1545 msgid "" "An account already exists with the same username but possibly a different " "hostname." msgstr "" +"Există deja un cont cu același nume de utilizator, dar probabil la un alt " +"nume de gazdă." #: libraries/classes/Server/Privileges.php:1554 -#, fuzzy -#| msgid "User name" msgid "Host name:" -msgstr "Nume utilizator" +msgstr "Nume gazdă:" #: libraries/classes/Server/Privileges.php:1559 #: libraries/classes/Server/Privileges.php:1644 #: libraries/classes/Server/Privileges.php:2563 #: libraries/classes/Server/Privileges.php:3534 -#, fuzzy -#| msgid "Log name" msgid "Host name" -msgstr "Denumire jurnal" +msgstr "Nume gazdă" #: libraries/classes/Server/Privileges.php:1667 -#, fuzzy msgid "Do not change the password" -msgstr "Nu schimbați parola" +msgstr "Nu schimba parola" #: libraries/classes/Server/Privileges.php:1717 -#, fuzzy -#| msgid "Authentication" msgid "Authentication Plugin" -msgstr "Autentificare" +msgstr "Modul de autentificare" #: libraries/classes/Server/Privileges.php:1724 #, fuzzy @@ -13629,247 +11575,204 @@ msgid "Password Hashing Method" msgstr "Criptare Parola" #: libraries/classes/Server/Privileges.php:2014 -#, fuzzy, php-format +#, php-format msgid "The password for %s was changed successfully." msgstr "Parola pentru %s a fost schimbată cu succes." #: libraries/classes/Server/Privileges.php:2058 -#, fuzzy, php-format +#, php-format msgid "You have revoked the privileges for %s." -msgstr "Drepturile tale au fost revocate pentru %s." +msgstr "Ai revocat privilegiile pentru %s." #: libraries/classes/Server/Privileges.php:2156 #: templates/privileges/add_user_fieldset.twig:7 -#, fuzzy -#| msgid "Add user" msgid "Add user account" -msgstr "Adaugă utilizator" +msgstr "Adaugă cont utilizator" #: libraries/classes/Server/Privileges.php:2165 -#, fuzzy -#| msgid "Database for user" msgid "Database for user account" -msgstr "Bază de date pentru utilizatorul" +msgstr "Bază de date pentru utilizatorul actual" #: libraries/classes/Server/Privileges.php:2171 -#, fuzzy msgid "Create database with same name and grant all privileges." msgstr "Creează o bază de date cu același nume și acordă toate privilegiile." #: libraries/classes/Server/Privileges.php:2182 msgid "Grant all privileges on wildcard name (username\\_%)." -msgstr "" +msgstr "Acordă toate privilegiile pentru nume metacaracter (username\\_%)." #: libraries/classes/Server/Privileges.php:2195 -#, fuzzy, php-format +#, php-format msgid "Grant all privileges on database %s." -msgstr "Verifică privilegiile pentru baza de date \"%s\"." +msgstr "Acordă toate privilegiile pentru baza de date „%s”." #: libraries/classes/Server/Privileges.php:2369 #: libraries/classes/Server/Privileges.php:2443 -#, fuzzy, php-format +#, php-format msgid "Users having access to \"%s\"" -msgstr "Utilizatorul are acces la \"%s\"" +msgstr "Utilizatori care au acces la „%s”" #: libraries/classes/Server/Privileges.php:2413 -#, fuzzy -#| msgid "View %s has been dropped." msgid "User has been added." -msgstr "Vizualizarea %s a fost eliminată" +msgstr "Utilizatorul a fost adăugat." #: libraries/classes/Server/Privileges.php:2566 #: libraries/classes/Server/Privileges.php:3544 #: templates/privileges/privileges_summary.twig:16 -#, fuzzy msgid "Grant" -msgstr "Permite" +msgstr "Acordă" #: libraries/classes/Server/Privileges.php:2581 msgid "Not enough privilege to view users." -msgstr "" +msgstr "Nu ai privilegii suficiente pentru a vedea utilizatorii." #: libraries/classes/Server/Privileges.php:2600 #: libraries/classes/Server/Privileges.php:3966 -#, fuzzy -#| msgid "No user(s) found." msgid "No user found." -msgstr "Nu s-a găsit nici un utilizator." +msgstr "Niciun utilizator găsit." #: libraries/classes/Server/Privileges.php:2631 #: libraries/classes/Server/Privileges.php:2960 #: libraries/classes/Server/Privileges.php:3625 -#, fuzzy msgid "Any" msgstr "Oricare" #: libraries/classes/Server/Privileges.php:2682 -#, fuzzy msgid "global" msgstr "global" #: libraries/classes/Server/Privileges.php:2685 -#, fuzzy msgid "database-specific" msgstr "specific bazei de date" #: libraries/classes/Server/Privileges.php:2687 -#, fuzzy msgid "wildcard" -msgstr "Metacaracter" +msgstr "metacaracter" #: libraries/classes/Server/Privileges.php:2693 -#, fuzzy -#| msgid "database-specific" msgid "table-specific" -msgstr "specific bazei de date" +msgstr "specific tabelului" #: libraries/classes/Server/Privileges.php:2832 -#, fuzzy -#| msgid "Edit Privileges" msgid "Edit privileges" -msgstr "Editează drepturile de acces" +msgstr "Editează privilegiile" #: libraries/classes/Server/Privileges.php:2835 -#, fuzzy msgid "Revoke" -msgstr "Revocare" +msgstr "Revocă" #: libraries/classes/Server/Privileges.php:2859 -#, fuzzy -#| msgid "Edit server" msgid "Edit user group" -msgstr "Redactează serverul" +msgstr "Editează grupul de utilizatori" #: libraries/classes/Server/Privileges.php:3074 -#, fuzzy msgid "… keep the old one." -msgstr "… menține cel vechi." +msgstr "… păstrează-l pe cel vechi." #: libraries/classes/Server/Privileges.php:3075 -#, fuzzy msgid "… delete the old one from the user tables." -msgstr "… șterge cel vechi din tabelul de utilizatori." +msgstr "… șterge-l pe cel vechi din tabelul de utilizatori." #: libraries/classes/Server/Privileges.php:3077 -#, fuzzy msgid "" "… revoke all active privileges from the old one and delete it afterwards." -msgstr "" -"…revocă toate privilegiile active de la utilizatorul vechi și șterge-l după " -"aceea." +msgstr "…revocă toate privilegiile active din cel vechi și apoi șterge-l." #: libraries/classes/Server/Privileges.php:3081 -#, fuzzy msgid "" "… delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -"… șterge cel vechi din tabelul de utilizatori și reîncarcă privilegiile." +"… șterge-l pe cel vechi din tabelul de utilizatori și apoi reîncarcă " +"privilegiile." #: libraries/classes/Server/Privileges.php:3103 -#, fuzzy -#| msgid "Change Login Information / Copy User" msgid "Change login information / Copy user account" -msgstr "Schimbă informațiile de autentificare/Copiază utilizator" +msgstr "Modifică informațiile de autentificare/copiază contul utilizatorului" #: libraries/classes/Server/Privileges.php:3109 -#, fuzzy -#| msgid "Create a new user with the same privileges and …" msgid "Create a new user account with the same privileges and …" -msgstr "Creează un utilizator nou cu aceleași privilegii și…" +msgstr "Creează un cont de utilizator nou cu aceleași privilegii și…" #: libraries/classes/Server/Privileges.php:3346 #: templates/privileges/edit_routine_privileges.twig:12 -#, fuzzy -#| msgid "Column-specific privileges" msgid "Routine-specific privileges" -msgstr "Drepturi specifice coloanei" +msgstr "Privilegii specifice rutinei" #: libraries/classes/Server/Privileges.php:3542 #: libraries/classes/Server/UserGroups.php:87 #: templates/privileges/choose_user_group.twig:4 #: templates/privileges/choose_user_group.twig:5 msgid "User group" -msgstr "" +msgstr "Grup de utilizatori" #: libraries/classes/Server/Privileges.php:3664 #: libraries/classes/Server/Privileges.php:4795 -#, fuzzy msgid "The selected user was not found in the privilege table." -msgstr "Utilizatorul selectat nu a fost găsit în tabelul de drepturi." +msgstr "Utilizatorul selectat nu a fost găsit în tabelul de privilegii." #: libraries/classes/Server/Privileges.php:3842 -#, fuzzy msgid "No users selected for deleting!" -msgstr "Nici un utilizator ales pentru ștergere!" +msgstr "Niciun utilizator selectat pentru ștergere!" #: libraries/classes/Server/Privileges.php:3845 -#, fuzzy msgid "Reloading the privileges" -msgstr "Reîncărcarea drepturilor" +msgstr "Reîncarc privilegiile" #: libraries/classes/Server/Privileges.php:3864 -#, fuzzy msgid "The selected users have been deleted successfully." -msgstr "Utilizatorii selectați au fost eliminați." +msgstr "Utilizatorii selectați au fost șterși cu succes." #: libraries/classes/Server/Privileges.php:3939 -#, fuzzy, php-format +#, php-format msgid "You have updated the privileges for %s." -msgstr "Ați actualizat privilegiile pentru %s." +msgstr "Ai actualizat privilegiile pentru %s." #: libraries/classes/Server/Privileges.php:4044 -#, fuzzy, php-format +#, php-format msgid "Deleting %s" -msgstr "Șterge %s" +msgstr "Șterg %s" #: libraries/classes/Server/Privileges.php:4074 -#, fuzzy msgid "The privileges were reloaded successfully." -msgstr "Drepturile au fost reîncarcate cu succes." +msgstr "Privilegiile au fost reîncărcate cu succes." #: libraries/classes/Server/Privileges.php:4165 -#, fuzzy, php-format +#, php-format msgid "The user %s already exists!" msgstr "Utilizatorul %s există deja!" #: libraries/classes/Server/Privileges.php:4438 -#, fuzzy, php-format -#| msgid "Privileges" +#, php-format msgid "Privileges for %s" -msgstr "Drepturi de acces" +msgstr "Privilegii pentru %s" #: libraries/classes/Server/Privileges.php:4447 #: libraries/classes/Server/Status/Processes.php:81 #: libraries/classes/Server/UserGroups.php:48 -#, fuzzy msgid "User" msgstr "Utilizator" #: libraries/classes/Server/Privileges.php:4515 -#, fuzzy -#| msgid "Edit Privileges" msgid "Edit privileges:" -msgstr "Editează drepturile de acces" +msgstr "Editează privilegiile:" #: libraries/classes/Server/Privileges.php:4516 -#, fuzzy -#| msgid "Users" msgid "User account" -msgstr "Utilizatori" +msgstr "Cont utilizator" #: libraries/classes/Server/Privileges.php:4590 msgid "" "Note: You are attempting to edit privileges of the user with which you are " "currently logged in." msgstr "" +"Notă: încerci să editezi privilegiile utilizatorului cu care ești " +"autentificat acum." #: libraries/classes/Server/Privileges.php:4610 #: libraries/classes/Server/Users.php:30 -#, fuzzy -#| msgid "User overview" msgid "User accounts overview" -msgstr "Descriere utilizator" +msgstr "Prezentare generală conturi utilizatori" #: libraries/classes/Server/Privileges.php:4685 msgid "" @@ -13877,32 +11780,24 @@ msgid "" "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." msgstr "" +"Un cont de utilizator permite oricărui utilizator din localhost să se " +"conecteze. Acest lucru va împiedica conectarea altor utilizatori dacă partea " +"gazdă a contului lor permite o conexiune de la orice gazdă (%)." #: libraries/classes/Server/Privileges.php:4727 -#, fuzzy, php-format -#| msgid "" -#| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " -#| "privilege tables. The content of these tables may differ from the " -#| "privileges the server uses, if they have been changed manually. In this " -#| "case, you should %sreload the privileges%s before you continue." +#, php-format msgid "" "Note: phpMyAdmin gets the users’ privileges directly from MySQL’s privilege " "tables. The content of these tables may differ from the privileges the " "server uses, if they have been changed manually. In this case, you should " "%sreload the privileges%s before you continue." msgstr "" -"Notă: phpMyAdmin folosește privilegiile utilizatorilor direct din tabelul de " -"privilegii din MySQL. Conținutul acestui tabel poate diferi de cel original. " -"În acest caz, reîncărcați de aici înainte de a continua %sreîncărcarea " -"drepturilor%s." +"Notă: phpMyAdmin ia privilegiile utilizatorilor direct din tabelele de " +"privilegii ale MySQL. Conținutul acestor tabele poate să difere de " +"privilegiile pe care le utilizează serverul, dacă au fost modificate manual. " +"În acest caz, ar trebui %ssă reîncarci privilegiile%s înainte de a continua." #: libraries/classes/Server/Privileges.php:4744 -#, fuzzy -#| msgid "" -#| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " -#| "privilege tables. The content of these tables may differ from the " -#| "privileges the server uses, if they have been changed manually. In this " -#| "case, you should %sreload the privileges%s before you continue." msgid "" "Note: phpMyAdmin gets the users’ privileges directly from MySQL’s privilege " "tables. The content of these tables may differ from the privileges the " @@ -13910,91 +11805,90 @@ msgid "" "privileges have to be reloaded but currently, you don't have the RELOAD " "privilege." msgstr "" -"Notă: phpMyAdmin folosește privilegiile utilizatorilor direct din tabelul de " -"privilegii din MySQL. Conținutul acestui tabel poate diferi de cel original. " -"În acest caz, reîncărcați de aici înainte de a continua %sreîncărcarea " -"drepturilor%s." +"Notă: phpMyAdmin ia privilegiile utilizatorilor direct din tabelele de " +"privilegii ale MySQL. Conținutul acestor tabele poate să difere de " +"privilegiile pe care le utilizează serverul, dacă au fost modificate manual. " +"În acest caz, privilegiile ar trebui să fie reîncărcate, dar în prezent nu " +"ai privilegiul REÎNCARCĂ." #: libraries/classes/Server/Privileges.php:5015 -#, fuzzy msgid "You have added a new user." -msgstr "Ați adăugat un nou utilizator." +msgstr "Ai adăugat un utilizator nou." #: libraries/classes/Server/Select.php:53 #: libraries/classes/Server/Select.php:58 -#, fuzzy -#| msgid "Current server" msgid "Current server:" -msgstr "Server curent" +msgstr "Server curent:" #: libraries/classes/Server/Status.php:68 #, php-format msgid "Network traffic since startup: %s" -msgstr "" +msgstr "Trafic în rețea de la pornire: %s" #: libraries/classes/Server/Status.php:81 -#, fuzzy, php-format -#| msgid "This MySQL server has been running for %s. It started up on %s." +#, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Acest server MySQL rulează de %s. S-a lansat la %s." +msgstr "Acest server MySQL rulează pentru %1$s. A pornit pe %2$s." #: libraries/classes/Server/Status.php:102 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" +"Acest server MySQL funcționează ca master și sclav în procesul " +"de replicare." #: libraries/classes/Server/Status.php:107 msgid "This MySQL server works as master in replication process." msgstr "" +"Acest server MySQL funcționează ca master în procesul de " +"replicare." #: libraries/classes/Server/Status.php:112 msgid "This MySQL server works as slave in replication process." msgstr "" +"Acest server MySQL funcționează ca sclav în procesul de " +"replicare." #: libraries/classes/Server/Status.php:124 -#, fuzzy msgid "Replication status" -msgstr "Replicare" +msgstr "Stare replicare" #: libraries/classes/Server/Status.php:154 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" +"Pe un server aglomerat, poate fi depășit numărul de octeți, astfel " +"statisticile raportate de serverul MySQL pot fi incorecte." #: libraries/classes/Server/Status.php:165 -#, fuzzy msgid "Received" -msgstr "Recepționat" +msgstr "Primite" #: libraries/classes/Server/Status.php:184 -#, fuzzy msgid "Sent" -msgstr "Trimis" +msgstr "Trimise" #: libraries/classes/Server/Status.php:251 -#, fuzzy -#| msgid "max. concurrent connections" msgid "Max. concurrent connections" -msgstr "conexiuni concurente (maxim)" +msgstr "Nr. maxim conexiuni concurente" #: libraries/classes/Server/Status.php:261 -#, fuzzy msgid "Failed attempts" -msgstr "Încercări nereușite" +msgstr "Încercări eșuate" #: libraries/classes/Server/Status/Advisor.php:29 -#, fuzzy -#| msgid "Introduction" msgid "Instructions" -msgstr "Introducere" +msgstr "Instrucțiuni" #: libraries/classes/Server/Status/Advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" +"Sistemul de consultanță poate furniza recomandări pentru variabilele " +"serverului analizând variabilele de stare ale serverului." #: libraries/classes/Server/Status/Advisor.php:41 msgid "" @@ -14002,6 +11896,8 @@ msgid "" "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" +"Reține, totuși, că acest sistem furnizează recomandări bazate pe calcule " +"simple și de regulă ele nu se aplică neapărat sistemului tău." #: libraries/classes/Server/Status/Advisor.php:48 msgid "" @@ -14009,6 +11905,9 @@ msgid "" "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" +"Înainte de a modifica orice configurație, asigură-te că știi ceea ce schimbi " +"(citind documentați) și că poți anula modificarea. O ajustare greșită poate " +"avea un efect foarte negativ asupra performanței." #: libraries/classes/Server/Status/Advisor.php:56 msgid "" @@ -14016,134 +11915,116 @@ msgid "" "time, observe or benchmark your database, and undo the change if there was " "no clearly measurable improvement." msgstr "" +"Cea mai bună modalitate de a-ți ajusta sistemul ar fi să modifici numai o " +"singură setare, pe rând, să examinezi sau să faci o analiză comparativă a " +"bazei de date și să anulezi modificarea dacă nu a fost nicio îmbunătățire " +"măsurabilă în mod clar." #: libraries/classes/Server/Status/Data.php:115 #: libraries/classes/Server/Status/Processes.php:109 -#, fuzzy msgid "SQL query" -msgstr "Comanda SQL" +msgstr "Interogare SQL" #: libraries/classes/Server/Status/Data.php:118 -#, fuzzy msgid "Handler" msgstr "Gestionar" #: libraries/classes/Server/Status/Data.php:119 -#, fuzzy msgid "Query cache" msgstr "Cache interogări" #: libraries/classes/Server/Status/Data.php:120 -#, fuzzy msgid "Threads" -msgstr "Fire" +msgstr "Fire de execuție" #: libraries/classes/Server/Status/Data.php:122 -#, fuzzy msgid "Temporary data" msgstr "Date temporare" #: libraries/classes/Server/Status/Data.php:123 -#, fuzzy msgid "Delayed inserts" -msgstr "Inserări întîrziate" +msgstr "Inserări întârziate" #: libraries/classes/Server/Status/Data.php:124 -#, fuzzy msgid "Key cache" msgstr "Cache cheie" #: libraries/classes/Server/Status/Data.php:125 -#, fuzzy msgid "Joins" -msgstr "Joncțiuni" +msgstr "Asocieri" #: libraries/classes/Server/Status/Data.php:127 -#, fuzzy msgid "Sorting" msgstr "Sortare" #: libraries/classes/Server/Status/Data.php:129 -#, fuzzy msgid "Transaction coordinator" msgstr "Coordonator tranzacție" #: libraries/classes/Server/Status/Data.php:130 #: templates/server/binlog/log_selector.twig:21 -#, fuzzy msgid "Files" msgstr "Fișiere" #: libraries/classes/Server/Status/Data.php:146 -#, fuzzy msgid "Flush (close) all tables" msgstr "Golește (închide) toate tabelele" #: libraries/classes/Server/Status/Data.php:152 -#, fuzzy msgid "Show open tables" -msgstr "Afișează tabele deschise" +msgstr "Arată tabele deschise" #: libraries/classes/Server/Status/Data.php:161 -#, fuzzy msgid "Show slave hosts" -msgstr "Afișează gazde sclavi" +msgstr "Arată gazde sclav" #: libraries/classes/Server/Status/Data.php:171 -#, fuzzy msgid "Show slave status" -msgstr "Afișează stare sclav" +msgstr "Arată stare sclav" #: libraries/classes/Server/Status/Data.php:176 -#, fuzzy msgid "Flush query cache" -msgstr "Reinițializare cache interogare" +msgstr "Golește cache interogări" #: libraries/classes/Server/Status/Data.php:433 -#, fuzzy msgid "Query statistics" -msgstr "Statisticile interogărilor" +msgstr "Statistici interogări" #: libraries/classes/Server/Status/Data.php:437 -#, fuzzy msgid "All status variables" msgstr "Toate variabilele de stare" #: libraries/classes/Server/Status/Data.php:441 -#, fuzzy msgid "Monitor" -msgstr "Monitor" +msgstr "Monitorizare" #: libraries/classes/Server/Status/Data.php:445 -#, fuzzy msgid "Advisor" -msgstr "Consilier" +msgstr "Consultanță" #: libraries/classes/Server/Status/Data.php:489 -#, fuzzy, php-format +#, php-format msgid "%d second" msgid_plural "%d seconds" -msgstr[0] "%d secundă" +msgstr[0] "O secundă" msgstr[1] "%d secunde" -msgstr[2] "%d secunde" +msgstr[2] "%d de secunde" #: libraries/classes/Server/Status/Data.php:494 -#, fuzzy, php-format +#, php-format msgid "%d minute" msgid_plural "%d minutes" -msgstr[0] "%d minut" +msgstr[0] "Un minut" msgstr[1] "%d minute" -msgstr[2] "%d minute" +msgstr[2] "%d de minute" #: libraries/classes/Server/Status/Monitor.php:73 -#, fuzzy msgid "Log statistics" -msgstr "Statisticile rândului" +msgstr "Statistici jurnale" #: libraries/classes/Server/Status/Monitor.php:74 -#, fuzzy msgid "Selected time range:" -msgstr "Perioada selectată:" +msgstr "Perioadă de timp selectată:" #: libraries/classes/Server/Status/Monitor.php:82 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" @@ -14152,26 +12033,23 @@ msgstr "" #: libraries/classes/Server/Status/Monitor.php:88 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" +"Înlătură datele variabile în declarațiile INSEREAZĂ pentru o grupare mai bună" #: libraries/classes/Server/Status/Monitor.php:92 msgid "Choose from which log you want the statistics to be generated from." -msgstr "" +msgstr "Alege din care jurnal vrei să fie generate statisticile." #: libraries/classes/Server/Status/Monitor.php:96 msgid "Results are grouped by query text." -msgstr "" +msgstr "Rezultatele sunt grupate după textul interogării." #: libraries/classes/Server/Status/Monitor.php:100 -#, fuzzy -#| msgid "Query type" msgid "Query analyzer" -msgstr "Tip interogare" +msgstr "Analizator interogare" #: libraries/classes/Server/Status/Monitor.php:117 -#, fuzzy -#| msgid "Introduction" msgid "Monitor Instructions" -msgstr "Introducere" +msgstr "Instrucțiuni pentru monitorizare" #: libraries/classes/Server/Status/Monitor.php:119 msgid "" @@ -14181,10 +12059,15 @@ msgid "" "enabled. Note however, that the general_log produces a lot of data and " "increases server load by up to 15%." msgstr "" +"Monitorizarea phpMyAdmin te poate ajuta în optimizarea configurării " +"serverului și să urmărești interogările intensive de timp. Pentru cele din " +"urmă va trebui să setezi log_output în „TABEL” și să ai activat fie " +"slow_query_log ori fie general_log. Rețineți, totuși, că general_log produce " +"o mulțime de date și crește încărcarea serverului cu până la 15%." #: libraries/classes/Server/Status/Monitor.php:135 msgid "Using the monitor:" -msgstr "" +msgstr "Folosind monitorizarea:" #: libraries/classes/Server/Status/Monitor.php:138 msgid "" @@ -14192,6 +12075,9 @@ msgid "" "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" +"Navigatorul tău va actualiza toate diagramele afișate într-un interval de " +"timp precis. Poți adăuga diagrame și să schimbi rata de reîmprospătare în " +"„Setări” sau să înlături orice diagramă folosind iconul diagramei respective." #: libraries/classes/Server/Status/Monitor.php:144 msgid "" @@ -14200,10 +12086,15 @@ msgid "" "confirmed, this will load a table of grouped queries, there you may click on " "any occurring SELECT statements to further analyze them." msgstr "" +"Pentru a afișa interogările din jurnale, selectează perioada de timp " +"relevantă pe orice diagramă ținând apăsat butonul stâng al mausului și " +"trecând peste diagramă. Odată confirmată, se va încărca un tabel de " +"interogări grupate, acolo poți da clic pe oricare dintre declarațiile " +"SELECTEAZĂ pentru a le analiza în continuare." #: libraries/classes/Server/Status/Monitor.php:154 msgid "Please note:" -msgstr "" +msgstr "Te rog reține:" #: libraries/classes/Server/Status/Monitor.php:157 msgid "" @@ -14212,230 +12103,193 @@ msgid "" "it is advisable to select only a small time span and to disable the " "general_log and empty its table once monitoring is not required any more." msgstr "" +"Activarea general_log poate crește încărcarea serverului cu 5-15%. De " +"asemenea, reține că generarea statisticilor din jurnale este o sarcină de " +"încărcare intensivă, deci este recomandat să selectezi numai o perioadă " +"scurtă de timp, să dezactivezi general_log și să-i golești tabelul după ce " +"monitorizarea nu mai este necesară." #: libraries/classes/Server/Status/Monitor.php:178 #: libraries/classes/Server/Status/Monitor.php:286 -#, fuzzy -#| msgid "Add %s field(s)" msgid "Add chart" -msgstr "Adaugă %s câmp(uri)" +msgstr "Adaugă diagramă" #: libraries/classes/Server/Status/Monitor.php:181 -#, fuzzy msgid "Chart Title" -msgstr "Titlu grafic" +msgstr "Titlu diagramă" #: libraries/classes/Server/Status/Monitor.php:184 -#, fuzzy -#| msgid "Rename database to" msgid "Preset chart" -msgstr "Redenumire bază de date în" +msgstr "Pre-setează diagrama" #: libraries/classes/Server/Status/Monitor.php:189 msgid "Status variable(s)" -msgstr "" +msgstr "Variabilă (variabile) de stare" #: libraries/classes/Server/Status/Monitor.php:192 -#, fuzzy -#| msgid "Select Tables" msgid "Select series:" -msgstr "Selectează tabele" +msgstr "Selectează seria:" #: libraries/classes/Server/Status/Monitor.php:194 msgid "Commonly monitored" -msgstr "" +msgstr "Monitorizate frecvent" #: libraries/classes/Server/Status/Monitor.php:210 -#, fuzzy -#| msgid "Invalid table name" msgid "or type variable name:" -msgstr "Denumire de tabel nevalidă" +msgstr "sau nume tip de variabilă:" #: libraries/classes/Server/Status/Monitor.php:217 msgid "Display as differential value" -msgstr "" +msgstr "Afișează ca valoare diferențială" #: libraries/classes/Server/Status/Monitor.php:221 msgid "Apply a divisor" -msgstr "" +msgstr "Aplică un divizor" #: libraries/classes/Server/Status/Monitor.php:229 msgid "Append unit to data values" -msgstr "" +msgstr "Atașează o unitate la valorile datelor" #: libraries/classes/Server/Status/Monitor.php:235 -#, fuzzy -#| msgid "Add a new server" msgid "Add this series" -msgstr "Adaugă un server nou" +msgstr "Adaugă această serie" #: libraries/classes/Server/Status/Monitor.php:237 msgid "Clear series" -msgstr "" +msgstr "Anulează seria" #: libraries/classes/Server/Status/Monitor.php:240 -#, fuzzy msgid "Series in chart:" -msgstr "Comanda SQL" +msgstr "Serie în diagramă:" #: libraries/classes/Server/Status/Monitor.php:261 -#, fuzzy -#| msgid "Start" msgid "Start Monitor" -msgstr "Dum" +msgstr "Pornește monitorizarea" #: libraries/classes/Server/Status/Monitor.php:267 -#, fuzzy -#| msgid "Introduction" msgid "Instructions/Setup" -msgstr "Introducere" +msgstr "Instrucțiuni/inițializare" #: libraries/classes/Server/Status/Monitor.php:270 msgid "Done dragging (rearranging) charts" -msgstr "" +msgstr "Am terminat tragerea (rearanjarea) diagramelor" # Activați evidențierea #: libraries/classes/Server/Status/Monitor.php:290 -#, fuzzy -#| msgid "Enable highlighting" msgid "Enable charts dragging" -msgstr "Activați highlighting-ul" +msgstr "Activează tragerea diagramelor" #: libraries/classes/Server/Status/Monitor.php:294 #: libraries/classes/Server/Status/Processes.php:38 -#, fuzzy msgid "Refresh rate" -msgstr "Reîncarcă" +msgstr "Rată de împrospătare" #: libraries/classes/Server/Status/Monitor.php:303 -#, fuzzy -#| msgid "Add/Delete Field Columns" msgid "Chart columns" -msgstr "Adaugă/șterge coloane" +msgstr "Coloane diagrame" #: libraries/classes/Server/Status/Monitor.php:315 msgid "Chart arrangement" -msgstr "" +msgstr "Aranjament diagrame" #: libraries/classes/Server/Status/Monitor.php:318 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" +"Aranjamentul diagramelor este stocat în spațiul de stocare local al " +"navigatoarelor. Poți să-l exporți dacă ai o inițializare complicată." #: libraries/classes/Server/Status/Monitor.php:332 msgid "Reset to default" -msgstr "" +msgstr "Resetează la valorile implicite" #: libraries/classes/Server/Status/Processes.php:33 -#, fuzzy -#| msgid "" -#| "Note: Enabling the database statistics here might cause heavy traffic " -#| "between the web server and the MySQL server." msgid "" "Note: Enabling the auto refresh here might cause heavy traffic between the " "web server and the MySQL server." msgstr "" -"Notă: Activarea statisticilor pentru baza de date poate cauza creșterea " -"traficului între MySQL și serverul Web." +"Notă: activarea aici a reîmprospătării automate poate genera trafic intens " +"între serverul web și serverul MySQL." #: libraries/classes/Server/Status/Processes.php:77 -#, fuzzy msgid "ID" msgstr "ID" #: libraries/classes/Server/Status/Processes.php:93 -#, fuzzy msgid "Command" -msgstr "Comanda" +msgstr "Comandă" #: libraries/classes/Server/Status/Processes.php:105 msgid "Progress" -msgstr "" +msgstr "Progres" #: libraries/classes/Server/Status/Processes.php:230 #: libraries/classes/Server/Status/Variables.php:47 templates/filter.twig:2 -#, fuzzy msgid "Filters" -msgstr "Fișiere" +msgstr "Filtre" #: libraries/classes/Server/Status/Processes.php:238 -#, fuzzy -#| msgid "Show open tables" msgid "Show only active" -msgstr "Afișează tabele deschise" +msgstr "Arată numai active" #: libraries/classes/Server/Status/Queries.php:40 #, php-format msgid "Questions since startup: %s" -msgstr "" +msgstr "Întrebări de la pornire: %s" #: libraries/classes/Server/Status/Queries.php:51 -#, fuzzy -#| msgid "per hour" msgid "per hour:" -msgstr "pe oră" +msgstr "pe oră:" #: libraries/classes/Server/Status/Queries.php:54 -#, fuzzy -#| msgid "per minute" msgid "per minute:" -msgstr "pe minut" +msgstr "pe minut:" #: libraries/classes/Server/Status/Queries.php:61 -#, fuzzy -#| msgid "per second" msgid "per second:" -msgstr "pe secundă" +msgstr "pe secundă:" #: libraries/classes/Server/Status/Queries.php:98 -#, fuzzy msgid "Statements" -msgstr "Comenzi" +msgstr "Declarații" #. l10n: # = Amount of queries #: libraries/classes/Server/Status/Queries.php:101 msgid "#" -msgstr "" +msgstr "#" #: libraries/classes/Server/Status/Variables.php:52 templates/filter.twig:4 -#, fuzzy -#| msgid "Do not change the password" msgid "Containing the word:" -msgstr "Nu schimbați parola" +msgstr "Conținând cuvântul:" #: libraries/classes/Server/Status/Variables.php:60 -#, fuzzy -#| msgid "Show open tables" msgid "Show only alert values" -msgstr "Afișează tabele deschise" +msgstr "Arată numai valori de alertă" #: libraries/classes/Server/Status/Variables.php:65 msgid "Filter by category…" -msgstr "" +msgstr "Filtrează după categoria…" #: libraries/classes/Server/Status/Variables.php:86 -#, fuzzy -#| msgid "Show open tables" msgid "Show unformatted values" -msgstr "Afișează tabele deschise" +msgstr "Arată valori neformatate" #: libraries/classes/Server/Status/Variables.php:105 -#, fuzzy -#| msgid "Relations" msgid "Related links:" -msgstr "Legături" +msgstr "Legături similare:" #: libraries/classes/Server/Status/Variables.php:339 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" +"Numărul de conexiuni care au eșuat deoarece clientul nu a închis cum trebuie " +"conexiunea." #: libraries/classes/Server/Status/Variables.php:343 -#, fuzzy msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Comprimă conexiunea la serverul MySQL" +msgstr "Numărul de încercări eșuate la conectarea cu serverul MySQL." #: libraries/classes/Server/Status/Variables.php:346 msgid "" @@ -14443,15 +12297,19 @@ msgid "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" +"Numărul de tranzacții care au folosit cache-ul jurnalului binar temporar, " +"dar care a depășit valoarea binlog_cache_size și a folosit un fișier " +"temporar pentru a stoca declarații din tranzacție." #: libraries/classes/Server/Status/Variables.php:351 msgid "The number of transactions that used the temporary binary log cache." msgstr "" +"Numărul de tranzacții care au folosit cache-ul jurnalului binar temporar." #: libraries/classes/Server/Status/Variables.php:354 msgid "" "The number of connection attempts (successful or not) to the MySQL server." -msgstr "" +msgstr "Numărul de încercări de conectare (reușite sau nu) la serverul MySQL." #: libraries/classes/Server/Status/Variables.php:358 msgid "" @@ -14460,48 +12318,54 @@ msgid "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." msgstr "" +"Numărul de tabele temporare pe disc create automat de server în timp ce " +"execută declarațiile. Dacă Created_tmp_disk_tables este mare, poate vrei să " +"mărești valoarea tmp_table_size pentru a determina ca tabelele temporare să " +"se bazeze pe memorie în loc de disc." #: libraries/classes/Server/Status/Variables.php:365 -#, fuzzy msgid "How many temporary files mysqld has created." -msgstr "Cîte fișiere temporare a creat mysqld." +msgstr "Câte fișiere temporare a creat mysqld." #: libraries/classes/Server/Status/Variables.php:368 -#, fuzzy msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -"Numărul de tabele temporare create automat în memorie de căter server în " -"timpul execuției de interogări." +"Numărul de tabele temporare create automat de server în memorie în timpul " +"executării declarațiilor." #: libraries/classes/Server/Status/Variables.php:372 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" +"Numărul de rânduri scrise cu INSERT DELAYED pentru care a apărut o eroare (" +"probabil cheie duplicat)." #: libraries/classes/Server/Status/Variables.php:376 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" +"Numărul de fire de execuție în uz gestionate prin INSERT DELAYED. Fiecare " +"tabel pe care se folosește INSERT DELAYED își are propriul fir de execuție." #: libraries/classes/Server/Status/Variables.php:381 msgid "The number of INSERT DELAYED rows written." -msgstr "" +msgstr "Numărul de rânduri INSERT DELAYED scrise." #: libraries/classes/Server/Status/Variables.php:384 msgid "The number of executed FLUSH statements." -msgstr "" +msgstr "Numărul de declarații FLUSH executate." #: libraries/classes/Server/Status/Variables.php:387 msgid "The number of internal COMMIT statements." -msgstr "" +msgstr "Numărul de declarații interne COMMIT." #: libraries/classes/Server/Status/Variables.php:390 msgid "The number of times a row was deleted from a table." -msgstr "" +msgstr "De câte ori a fost șters un rând dintr-un tabel." #: libraries/classes/Server/Status/Variables.php:393 msgid "" @@ -14522,6 +12386,9 @@ msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" +"Numărul de cereri de citire a unui rând pe baza unei chei. Dacă este mare, " +"este un indicator bun că interogările și tabelele tale sunt indexate " +"corespunzător." #: libraries/classes/Server/Status/Variables.php:410 msgid "" @@ -14554,33 +12421,29 @@ msgstr "" #: libraries/classes/Server/Status/Variables.php:433 msgid "The number of internal ROLLBACK statements." -msgstr "" +msgstr "Numărul de declarații interne ROLLBACK." #: libraries/classes/Server/Status/Variables.php:436 msgid "The number of requests to update a row in a table." -msgstr "" +msgstr "Numărul de cereri pentru a actualiza un rând într-un tabel." #: libraries/classes/Server/Status/Variables.php:439 -#, fuzzy msgid "The number of requests to insert a row in a table." -msgstr "Numărul de cereri de a insera un rând într-un tabel." +msgstr "Numărul de cereri pentru a insera un rând într-un tabel." #: libraries/classes/Server/Status/Variables.php:442 -#, fuzzy msgid "The number of pages containing data (dirty or clean)." -msgstr "Numărul de pagini conținînd date (curate sau murdare)." +msgstr "Numărul de pagini care conțin date (curate sau murdare)." #: libraries/classes/Server/Status/Variables.php:445 -#, fuzzy msgid "The number of pages currently dirty." -msgstr "Numărul de pagini actualmente murdare." +msgstr "Numărul de pagini acum murdare." #: libraries/classes/Server/Status/Variables.php:448 msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" +msgstr "Numărul de pagini buffer pool pentru care s-a cerute să fie golite." #: libraries/classes/Server/Status/Variables.php:452 -#, fuzzy msgid "The number of free pages." msgstr "Numărul de pagini libere." @@ -14590,6 +12453,9 @@ msgid "" "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" +"Numărul de pagini blocate în buffer pool InnoDB. Acestea sunt pagini care " +"sunt în prezent citite sau scrise sau care nu pot fi golite sau înlăturate " +"dintr-un alt motiv." #: libraries/classes/Server/Status/Variables.php:460 msgid "" @@ -14601,7 +12467,7 @@ msgstr "" #: libraries/classes/Server/Status/Variables.php:467 msgid "Total size of buffer pool, in pages." -msgstr "" +msgstr "Dimensiune totală buffer pool, în pagini." #: libraries/classes/Server/Status/Variables.php:470 msgid "" @@ -14617,7 +12483,7 @@ msgstr "" #: libraries/classes/Server/Status/Variables.php:479 msgid "The number of logical read requests InnoDB has done." -msgstr "" +msgstr "Numărul de cereri de citire logice pe care le-a făcut InnoDB." #: libraries/classes/Server/Status/Variables.php:482 msgid "" @@ -14636,56 +12502,47 @@ msgstr "" #: libraries/classes/Server/Status/Variables.php:494 msgid "The number writes done to the InnoDB buffer pool." -msgstr "" +msgstr "Numărul de scrieri făcute în buffer pool InnoDB." #: libraries/classes/Server/Status/Variables.php:497 msgid "The number of fsync() operations so far." -msgstr "" +msgstr "Numărul de operații fsync() până acum." #: libraries/classes/Server/Status/Variables.php:500 msgid "The current number of pending fsync() operations." -msgstr "" +msgstr "Numărul curent de operații fsync() în așteptare." #: libraries/classes/Server/Status/Variables.php:503 msgid "The current number of pending reads." -msgstr "" +msgstr "Numărul curent de citiri în așteptare." #: libraries/classes/Server/Status/Variables.php:506 msgid "The current number of pending writes." -msgstr "" +msgstr "Numărul curent de scrieri în așteptare." #: libraries/classes/Server/Status/Variables.php:509 msgid "The amount of data read so far, in bytes." -msgstr "" +msgstr "Cantitatea de date citită până acum, în octeți." #: libraries/classes/Server/Status/Variables.php:512 -#, fuzzy msgid "The total number of data reads." msgstr "Numărul total de citiri de date." #: libraries/classes/Server/Status/Variables.php:515 -#, fuzzy msgid "The total number of data writes." msgstr "Numărul total de scrieri de date." #: libraries/classes/Server/Status/Variables.php:518 -#, fuzzy msgid "The amount of data written so far, in bytes." -msgstr "Cantitatea totală de date scrisă până acum, în bytes." +msgstr "Cantitatea de date scrisă până acum, în octeți." #: libraries/classes/Server/Status/Variables.php:521 -#, fuzzy msgid "The number of pages that have been written for doublewrite operations." -msgstr "" -"The number of doublewrite writes that have been performed and the number of " -"pages that have been written for this purpose." +msgstr "Numărul de pagini care au fost scrise pentru operații de scriere dublă." #: libraries/classes/Server/Status/Variables.php:525 -#, fuzzy msgid "The number of doublewrite operations that have been performed." -msgstr "" -"The number of doublewrite writes that have been performed and the number of " -"pages that have been written for this purpose." +msgstr "Numărul de operații de scriere dublă care au fost efectuate." #: libraries/classes/Server/Status/Variables.php:528 msgid "" @@ -14695,16 +12552,15 @@ msgstr "" #: libraries/classes/Server/Status/Variables.php:532 msgid "The number of log write requests." -msgstr "" +msgstr "Numărul de cereri de scriere în jurnal." #: libraries/classes/Server/Status/Variables.php:535 msgid "The number of physical writes to the log file." -msgstr "" +msgstr "Numărul de scrieri fizice în fișierul jurnal." #: libraries/classes/Server/Status/Variables.php:538 -#, fuzzy msgid "The number of fsync() writes done to the log file." -msgstr "The number of fsyncs writes done to the log file." +msgstr "Numărul de scrieri fsync() făcute în fișierul jurnal." #: libraries/classes/Server/Status/Variables.php:541 msgid "The number of pending log file fsyncs." @@ -14712,14 +12568,13 @@ msgstr "" #: libraries/classes/Server/Status/Variables.php:544 msgid "Pending log file writes." -msgstr "" +msgstr "Scrieri în așteptare pentru fișierul jurnal." #: libraries/classes/Server/Status/Variables.php:547 msgid "The number of bytes written to the log file." -msgstr "" +msgstr "Numărul de octeți scriși în fișierul jurnal." #: libraries/classes/Server/Status/Variables.php:550 -#, fuzzy msgid "The number of pages created." msgstr "Numărul de pagini create." @@ -14728,52 +12583,52 @@ msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" +"Dimensiunea paginii InnoDB compilate (valoare implicită 16 KO). Multe valori " +"sunt numărate în pagini; dimensiunea paginii le permite să fie ușor " +"convertite în octeți." #: libraries/classes/Server/Status/Variables.php:558 -#, fuzzy msgid "The number of pages read." msgstr "Numărul de pagini citite." #: libraries/classes/Server/Status/Variables.php:561 -#, fuzzy msgid "The number of pages written." msgstr "Numărul de pagini scrise." #: libraries/classes/Server/Status/Variables.php:564 msgid "The number of row locks currently being waited for." -msgstr "" +msgstr "Numărul de blocări de rând care este așteptat în prezent." #: libraries/classes/Server/Status/Variables.php:567 msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" +msgstr "Durata medie pentru a obține o blocare de rând, în milisecunde." #: libraries/classes/Server/Status/Variables.php:570 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" +"Timpul total petrecut pentru obținerea blocărilor de rând, în milisecunde." #: libraries/classes/Server/Status/Variables.php:573 msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" +msgstr "Durata maximă pentru a obține o blocare de rând, în milisecunde." #: libraries/classes/Server/Status/Variables.php:576 msgid "The number of times a row lock had to be waited for." -msgstr "" +msgstr "De câte ori a trebuit să fie așteptată o blocare de rând." #: libraries/classes/Server/Status/Variables.php:579 msgid "The number of rows deleted from InnoDB tables." -msgstr "" +msgstr "Numărul de rânduri șterse din tabelele InnoDB." #: libraries/classes/Server/Status/Variables.php:582 msgid "The number of rows inserted in InnoDB tables." -msgstr "" +msgstr "Numărul de rânduri inserate în tabelele InnoDB." #: libraries/classes/Server/Status/Variables.php:585 -#, fuzzy msgid "The number of rows read from InnoDB tables." msgstr "Numărul de rânduri citite din tabelele InnoDB." #: libraries/classes/Server/Status/Variables.php:588 -#, fuzzy msgid "The number of rows updated in InnoDB tables." msgstr "Numărul de rânduri actualizate în tabelele InnoDB." @@ -14788,6 +12643,8 @@ msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" +"Numărul de blocuri neutilizate din cache-ul chei. Poți folosi această " +"valoare pentru a determina cât de mult este folosit cache-ul chei." #: libraries/classes/Server/Status/Variables.php:600 msgid "" @@ -14795,16 +12652,17 @@ msgid "" "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" +"Numărul de blocuri utilizate în cache-ul chei. Această valoare are un nivel " +"maxim care indică numărul maxim de blocuri care au fost în uz la un moment " +"dat." #: libraries/classes/Server/Status/Variables.php:605 -#, fuzzy -#| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" -msgstr "Formatul fișierului importat" +msgstr "Procent din cache-ul chei folosit (valoare calculată)" #: libraries/classes/Server/Status/Variables.php:608 msgid "The number of requests to read a key block from the cache." -msgstr "" +msgstr "Numărul de cereri pentru a citi un bloc de chei din cache." #: libraries/classes/Server/Status/Variables.php:611 msgid "" @@ -14812,25 +12670,32 @@ msgid "" "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" +"Numărul de citiri fizice ale unui bloc de chei de pe disc. Dacă Key_reads " +"este mare, apoi valoarea ta key_buffer_size este probabil prea mică. Rata " +"pierderii de cache poate fi calculată ca Key_reads/Key_read_requests." #: libraries/classes/Server/Status/Variables.php:617 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" +"Pierderea cache chei este calculată ca rata citirilor fizice în comparație " +"cu cererile de citire (valoare calculată)" #: libraries/classes/Server/Status/Variables.php:621 msgid "The number of requests to write a key block to the cache." -msgstr "" +msgstr "Numărul de cereri pentru a scrie un bloc de chei în cache." #: libraries/classes/Server/Status/Variables.php:624 msgid "The number of physical writes of a key block to disk." -msgstr "" +msgstr "Numărul de scrieri fizice ale unui bloc de chei pe disc." #: libraries/classes/Server/Status/Variables.php:627 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" +"Procent din scrieri fizice comparate cu cererile de scriere (valoare " +"calculată)" #: libraries/classes/Server/Status/Variables.php:631 msgid "" @@ -14844,29 +12709,35 @@ msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" +"Numărul maxim de conexiuni care au fost utilizate simultan de la pornirea " +"serverului." #: libraries/classes/Server/Status/Variables.php:641 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" +"Numărul de rânduri care așteaptă să fie scrise în cozile INSERT DELAYED." #: libraries/classes/Server/Status/Variables.php:644 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" +"Numărul de tabele care au fost deschise. Dacă tabelele deschise sunt mari, " +"valoarea cache-ului tabele este probabil prea mică." #: libraries/classes/Server/Status/Variables.php:648 msgid "The number of files that are open." -msgstr "" +msgstr "Numărul de fișiere care sunt deschise." #: libraries/classes/Server/Status/Variables.php:651 msgid "The number of streams that are open (used mainly for logging)." msgstr "" +"Numărul de fluxuri care sunt deschise (folosite în principal pentru " +"autentificare)." #: libraries/classes/Server/Status/Variables.php:654 -#, fuzzy msgid "The number of tables that are open." -msgstr "Numărul de tabele ce sînt deschise." +msgstr "Numărul de tabele care sunt deschise." #: libraries/classes/Server/Status/Variables.php:657 msgid "" @@ -14874,18 +12745,19 @@ msgid "" "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" +"Numărul de blocuri de memorie libere din cache-ul interogări. Valorile mari " +"pot indica probleme de fragmentare, care pot fi rezolvate prin emiterea unei " +"declarații FLUSH QUERY CACHE." #: libraries/classes/Server/Status/Variables.php:662 msgid "The amount of free memory for query cache." -msgstr "" +msgstr "Cantitatea de memorie liberă pentru cache interogări." #: libraries/classes/Server/Status/Variables.php:665 -#, fuzzy msgid "The number of cache hits." -msgstr "Numărul de nimeriri în cache." +msgstr "Numărul de vizite în cache." #: libraries/classes/Server/Status/Variables.php:668 -#, fuzzy msgid "The number of queries added to the cache." msgstr "Numărul de interogări adăugate la cache." @@ -14902,16 +12774,16 @@ msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" +"Numărul de interogări care nu sunt memorate în cache (nu pot fi memorate în " +"cache sau nu sunt memorate în cache din cauza setării query_cache_type)." #: libraries/classes/Server/Status/Variables.php:682 -#, fuzzy msgid "The number of queries registered in the cache." msgstr "Numărul de interogări înregistrate în cache." #: libraries/classes/Server/Status/Variables.php:685 -#, fuzzy msgid "The total number of blocks in the query cache." -msgstr "Numărul total de blocuri în cache-ul interogării." +msgstr "Numărul total de blocuri în cache-ul interogări." #: libraries/classes/Server/Status/Variables.php:688 msgid "The status of failsafe replication (not yet implemented)." @@ -14922,51 +12794,68 @@ msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" +"Numărul de asocieri care nu folosesc indexuri. Dacă această valoare nu este " +"0, trebuie să verifici cu atenție indexurile tabelelor tale." #: libraries/classes/Server/Status/Variables.php:695 msgid "The number of joins that used a range search on a reference table." msgstr "" +"Numărul de asocieri care au folosit o căutare într-un interval într-un tabel " +"de referință." #: libraries/classes/Server/Status/Variables.php:698 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" +"Numărul de asocieri fără chei care verifică utilizarea cheilor după fiecare " +"rând. (Dacă nu este 0, ar trebui să verifici cu atenție indexurile tabelelor " +"tale.)" #: libraries/classes/Server/Status/Variables.php:703 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" +"Numărul de asocieri care au folosit intervale în primul tabel. (În mod " +"normal, nu este o valoare critică chiar dacă este mare.)" #: libraries/classes/Server/Status/Variables.php:707 msgid "The number of joins that did a full scan of the first table." msgstr "" +"Numărul de asocieri care au efectuat o scanare completă a primului tabel." #: libraries/classes/Server/Status/Variables.php:710 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" +"Numărul de tabele temporare deschise acum de firul de execuție SQL sclav." #: libraries/classes/Server/Status/Variables.php:714 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" +"Numărul total de replicări (de la pornire) ale firului de execuție SQL sclav " +"care a reluat tranzacțiile." #: libraries/classes/Server/Status/Variables.php:718 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" +"Este PORNIT dacă acest server este un sclav care este conectat la un master." #: libraries/classes/Server/Status/Variables.php:721 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" +"Numărul de fire de execuție cărora le-a luat mai mult de slow_launch_time " +"secunde pentru creare." #: libraries/classes/Server/Status/Variables.php:725 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" +"Numărul de interogări cărora le-a luat mai mult de long_query_time secunde." #: libraries/classes/Server/Status/Variables.php:729 msgid "" @@ -14977,20 +12866,19 @@ msgstr "" #: libraries/classes/Server/Status/Variables.php:734 msgid "The number of sorts that were done with ranges." -msgstr "" +msgstr "Numărul de sortări care au fost făcute cu intervale." #: libraries/classes/Server/Status/Variables.php:737 -#, fuzzy msgid "The number of sorted rows." msgstr "Numărul de rânduri sortate." #: libraries/classes/Server/Status/Variables.php:740 msgid "The number of sorts that were done by scanning the table." -msgstr "" +msgstr "Numărul de sortări care au fost făcute prin scanarea tabelului." #: libraries/classes/Server/Status/Variables.php:743 msgid "The number of times that a table lock was acquired immediately." -msgstr "" +msgstr "De câte ori a fost obținută imediat o blocare de tabel." #: libraries/classes/Server/Status/Variables.php:746 msgid "" @@ -15006,11 +12894,13 @@ msgid "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" +"Numărul de fire în cache fire de execuție. Rata de succes a cache-ului poate " +"fi calculată ca Threads_created/conexiuni. Dacă această valoare este roșie, " +"ar trebui să crești thread_cache_size." #: libraries/classes/Server/Status/Variables.php:757 -#, fuzzy msgid "The number of currently open connections." -msgstr "Numărul de conexiuni deschise momentan." +msgstr "Numărul de conexiuni deschise acum." #: libraries/classes/Server/Status/Variables.php:760 msgid "" @@ -15021,10 +12911,8 @@ msgid "" msgstr "" #: libraries/classes/Server/Status/Variables.php:767 -#, fuzzy -#| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" -msgstr "Monitorizarea nu este activată" +msgstr "Rată de succes cache fire de execuție (valoare calculată)" #: libraries/classes/Server/Status/Variables.php:770 msgid "The number of threads that are not sleeping." @@ -15033,265 +12921,202 @@ msgstr "" #: libraries/classes/Server/UserGroups.php:31 #, php-format msgid "Users of '%s' user group" -msgstr "" +msgstr "Utilizatorii din grupul de utilizatori „%s”" #: libraries/classes/Server/UserGroups.php:44 msgid "No users were found belonging to this user group." -msgstr "" +msgstr "Niciun utilizator găsit care să aparțină acestui grup de utilizatori." #: libraries/classes/Server/UserGroups.php:73 #: libraries/classes/Server/Users.php:38 -#, fuzzy -#| msgid "Users" msgid "User groups" -msgstr "Utilizatori" +msgstr "Grupuri de utilizatori" #: libraries/classes/Server/UserGroups.php:88 -#, fuzzy -#| msgid "Server version" msgid "Server level tabs" -msgstr "Versiune server" +msgstr "File la nivel de server" #: libraries/classes/Server/UserGroups.php:89 -#, fuzzy -#| msgid "Database for user" msgid "Database level tabs" -msgstr "Bază de date pentru utilizatorul" +msgstr "File la nivel de bază de date" #: libraries/classes/Server/UserGroups.php:90 -#, fuzzy -#| msgid "Table removal" msgid "Table level tabs" -msgstr "Denumire tabel" +msgstr "File la nivel de tabel" #: libraries/classes/Server/UserGroups.php:118 -#, fuzzy -#| msgid "View" msgid "View users" -msgstr "Vizualizare" +msgstr "Vezi utilizatorii" #: libraries/classes/Server/UserGroups.php:154 #: libraries/classes/Server/UserGroups.php:218 -#, fuzzy -#| msgid "Add user" msgid "Add user group" -msgstr "Adaugă utilizator" +msgstr "Adaugă grup de utilizatori" #: libraries/classes/Server/UserGroups.php:221 #, php-format msgid "Edit user group: '%s'" -msgstr "" +msgstr "Editează grupul de utilizatori: „%s”" #: libraries/classes/Server/UserGroups.php:237 -#, fuzzy -#| msgid "No privileges." msgid "User group menu assignments" -msgstr "Fără drepturi." +msgstr "Sarcini meniu grup de utilizatori" #: libraries/classes/Server/UserGroups.php:245 -#, fuzzy -#| msgid "Column names" msgid "Group name:" -msgstr "Denumirile coloanelor" +msgstr "Nume grup:" #: libraries/classes/Server/UserGroups.php:282 -#, fuzzy -#| msgid "Server version" msgid "Server-level tabs" -msgstr "Versiune server" +msgstr "File la nivel de server" #: libraries/classes/Server/UserGroups.php:285 -#, fuzzy -#| msgid "Database for user" msgid "Database-level tabs" -msgstr "Bază de date pentru utilizatorul" +msgstr "File la nivel de bază de date" #: libraries/classes/Server/UserGroups.php:288 -#, fuzzy -#| msgid "Table removal" msgid "Table-level tabs" -msgstr "Denumire tabel" +msgstr "File la nivel de tabel" #: libraries/classes/Sql.php:248 libraries/classes/Util.php:1145 #: templates/console/display.twig:31 templates/console/display.twig:175 -#, fuzzy msgid "Profiling" -msgstr "Creare profil" +msgstr "Creez profilul" #: libraries/classes/Sql.php:251 -#, fuzzy -#| msgid "Data files" msgid "Detailed profile" -msgstr "Fișiere cu date" +msgstr "Profil detaliat" #: libraries/classes/Sql.php:256 libraries/classes/Sql.php:272 -#, fuzzy -#| msgctxt "Start of recurring event" -#| msgid "Start" msgid "State" -msgstr "Începutul" +msgstr "Stare" #: libraries/classes/Sql.php:269 msgid "Summary by state" -msgstr "" +msgstr "Rezumat după stare" #: libraries/classes/Sql.php:275 -#, fuzzy -#| msgid "Total" msgid "Total Time" -msgstr "Total" +msgstr "Timp total" #: libraries/classes/Sql.php:277 -#, fuzzy -#| msgid "Time" msgid "% Time" -msgstr "Timp" +msgstr "Timp %" #: libraries/classes/Sql.php:279 -#, fuzzy -#| msgid "Close" msgid "Calls" -msgstr "Închide" +msgstr "Apelări" #: libraries/classes/Sql.php:281 -#, fuzzy -#| msgid "Time" msgid "ø Time" -msgstr "Timp" +msgstr "ø timp" #: libraries/classes/Sql.php:586 libraries/classes/Sql.php:604 -#, fuzzy msgid "Bookmark this SQL query" -msgstr "Pune semn de carte la această comandă SQL" +msgstr "Pune semn de carte la această interogare SQL" #: libraries/classes/Sql.php:590 -#, fuzzy -#| msgid "Label" msgid "Label:" -msgstr "Etichetă" +msgstr "Etichetă:" #: libraries/classes/Sql.php:597 libraries/classes/SqlQueryForm.php:316 -#, fuzzy msgid "Let every user access this bookmark" msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte" #: libraries/classes/Sql.php:813 -#, fuzzy -#| msgid "Bookmark not created" msgid "Bookmark not created!" -msgstr "Semnul de carte nu a fost creat" +msgstr "Semn de carte necreat!" #: libraries/classes/Sql.php:923 -#, fuzzy, php-format +#, php-format msgid "Using bookmark \"%s\" as default browse query." -msgstr "Se folosește semnul de carte „%s” ca interogare de răsfoire implicită." +msgstr "Folosește semnul de carte „%s” ca interogare de răsfoire implicită." #: libraries/classes/Sql.php:1400 -#, fuzzy msgid "Showing as PHP code" -msgstr "Afișare ca cod PHP" +msgstr "Arăt drept cod PHP" #: libraries/classes/Sql.php:1775 -#, fuzzy, php-format -#| msgid "" -#| "This table does not contain a unique column. Features related to the grid " -#| "edit, checkbox, Edit, Copy and Delete links may not work after saving." +#, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" msgstr "" -"Acest tabel nu coține o coloană unică. Funcțiile legate de editare grid, " -"checkbox, sau link-urile de Editare, Copiere si Ștergere pot să nu " -"funcționeze după salvare." +"Selecția actuală nu conține o coloană unică. Funcționalitățile editare " +"grilă, bifă, editează, copiază și șterge nu sunt disponibile. %s" #: libraries/classes/Sql.php:1789 -#, fuzzy, php-format -#| msgid "" -#| "This table does not contain a unique column. Features related to the grid " -#| "edit, checkbox, Edit, Copy and Delete links may not work after saving." +#, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" msgstr "" -"Acest tabel nu coține o coloană unică. Funcțiile legate de editare grid, " -"checkbox, sau link-urile de Editare, Copiere si Ștergere pot să nu " -"funcționeze după salvare." +"Selecția actuală nu conține o coloană unică. Funcționalitățile editare " +"grilă, bifă, editează, copiază și șterge pot duce la un comportament " +"nedorit. %s" #: libraries/classes/Sql.php:1831 -#, fuzzy, php-format +#, php-format msgid "Problems with indexes of table `%s`" -msgstr "Probleme cu indexul tabelului „%s”" +msgstr "Probleme cu indexurile tabelului „%s”" #: libraries/classes/SqlQueryForm.php:140 -#, fuzzy, php-format -#| msgid "Run SQL query/queries on server %s" +#, php-format msgid "Run SQL query/queries on server “%s”" -msgstr "Execută interogare/interogări SQL pe serverul %s" +msgstr "Execută o interogare/interogări SQL pe serverul „%s”" #: libraries/classes/SqlQueryForm.php:157 -#, fuzzy, php-format +#, php-format msgid "Run SQL query/queries on database %s" -msgstr "Execută interogare SQL asupra bazei de date %s" +msgstr "Execută o interogare/interogări SQL în baza de date %s" #: libraries/classes/SqlQueryForm.php:178 -#, fuzzy, php-format -#| msgid "Run SQL query/queries on database %s" +#, php-format msgid "Run SQL query/queries on table %s" -msgstr "Execută interogare SQL asupra bazei de date %s" +msgstr "Execută o interogare/interogări SQL în tabelul %s" #: libraries/classes/SqlQueryForm.php:248 setup/frames/index.inc.php:254 #: templates/console/display.twig:7 -#, fuzzy msgid "Clear" -msgstr "Goliți" +msgstr "Anulează" #: libraries/classes/SqlQueryForm.php:254 msgid "Get auto-saved query" -msgstr "" +msgstr "Ia interogarea salvată automat" #: libraries/classes/SqlQueryForm.php:260 -#, fuzzy -#| msgid "Bad parameters!" msgid "Bind parameters" -msgstr "Parametrii greșiți!" +msgstr "Parametri legați" #: libraries/classes/SqlQueryForm.php:308 -#, fuzzy -#| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" -msgstr "Pune semn de carte la această comandă SQL" +msgstr "Pune semn de carte la această interogare SQL:" #: libraries/classes/SqlQueryForm.php:322 -#, fuzzy msgid "Replace existing bookmark of same name" -msgstr "Înlocuiește semnul de carte cu același nume" +msgstr "Înlocuiește semnul de carte existent cu același nume" #: libraries/classes/SqlQueryForm.php:336 -#, fuzzy msgid "Delimiter" msgstr "Delimitator" #: libraries/classes/SqlQueryForm.php:346 -#, fuzzy msgid "Show this query here again" -msgstr "Afișează această interogare din nou aici" +msgstr "Arată această interogare din nou, aici" #: libraries/classes/SqlQueryForm.php:363 msgid "Rollback when finished" -msgstr "" +msgstr "Restaurează când termini" #: libraries/classes/SqlQueryForm.php:410 -#, fuzzy msgid "shared" -msgstr "comun" +msgstr "partajat" #: libraries/classes/SqlQueryForm.php:423 -#, fuzzy msgid "View only" msgstr "Numai vizualizare" #: libraries/classes/StorageEngine.php:280 -#, fuzzy msgid "" "There is no detailed status information available for this storage engine." msgstr "" @@ -15300,238 +13125,221 @@ msgstr "" #: libraries/classes/StorageEngine.php:383 #: templates/database/structure/body_for_table_summary.twig:48 -#, fuzzy, php-format +#, php-format msgid "%s is the default storage engine on this MySQL server." -msgstr "%s este motorul de stocare stabilit implicit pe acest server MySQL." +msgstr "%s este motorul de stocare implicit pe acest server MySQL." #: libraries/classes/StorageEngine.php:386 -#, fuzzy, php-format +#, php-format msgid "%s is available on this MySQL server." -msgstr "%s este disponibil pentru acest server MySQL." +msgstr "%s este disponibil pe acest server MySQL." #: libraries/classes/StorageEngine.php:389 -#, fuzzy, php-format +#, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s a fost dezactivat pentru acest server MySQL." #: libraries/classes/StorageEngine.php:394 -#, fuzzy, php-format +#, php-format msgid "This MySQL server does not support the %s storage engine." -msgstr "Acest server MySQL nu susține motorul de stocare %s." +msgstr "Acest server MySQL nu suportă motorul de stocare %s." #: libraries/classes/Table.php:332 -#, fuzzy msgid "Unknown table status:" msgstr "Stare tabel necunoscută:" #: libraries/classes/Table.php:884 -#, fuzzy, php-format +#, php-format msgid "Source database `%s` was not found!" -msgstr "Baza de date `%s` nu a fost găsită!" +msgstr "Baza de date sursă „%s” nu a fost găsită!" #: libraries/classes/Table.php:892 -#, fuzzy, php-format +#, php-format msgid "Target database `%s` was not found!" -msgstr "Baza de date țintă `%s` nu a fost găsită!" +msgstr "Baza de date țintă „%s” nu a fost găsită!" #: libraries/classes/Table.php:1435 -#, fuzzy msgid "Invalid database:" msgstr "Bază de date invalidă:" #: libraries/classes/Table.php:1452 -#, fuzzy msgid "Invalid table name:" -msgstr "Denumire de tabel invalidă:" +msgstr "Nume tabel invalid:" #: libraries/classes/Table.php:1487 -#, fuzzy, php-format +#, php-format msgid "Failed to rename table %1$s to %2$s!" -msgstr "Eroare la redenumirea tabelului %1$s în %2$s!" +msgstr "Redenumirea tabelului %1$s în %2$s a eșuat!" #: libraries/classes/Table.php:1506 -#, fuzzy, php-format +#, php-format msgid "Table %1$s has been renamed to %2$s." -msgstr "Tabelul %1$s a fost redenumit în %2$s." +msgstr "Tabelul %1$s a fost redenumit în %2$s." #: libraries/classes/Table.php:1737 -#, fuzzy msgid "Could not save table UI preferences!" -msgstr "Nu am putut salva tabela cu preferinţele UI!" +msgstr "Nu am putut salva preferințele UI tabel!" #: libraries/classes/Table.php:1767 -#, fuzzy, php-format +#, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -"Curățarea eşuată a preferințelor de interfață (vezi " +"Ștergerea preferințelor UI tabel a eșuat (vezi " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" #: libraries/classes/Table.php:1920 -#, fuzzy, php-format +#, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " "after you refresh this page. Please check if the table structure has been " "changed." msgstr "" -"Nu se poate salva proprietatea de interfață \"%s\". Schimbările efectuate nu " -"vor fi salvate după reîncărcarea paginii. Vă rugăm verificați dacă structura " -"tabelei s-a schimbat." +"Nu pot salva proprietatea UI „%s”. Modificările făcute nu vor rămâne salvate " +"după ce reîncarci pagina. Te rog verifică dacă structura tabelului a fost " +"modificată." #: libraries/classes/Table.php:2056 -#, fuzzy msgid "The name of the primary key must be \"PRIMARY\"!" -msgstr "Numele cheii primare trebuie să fie \"PRIMARY\"!" +msgstr "Numele cheii principale trebuie să fie „PRIMARY”!" #: libraries/classes/Table.php:2067 -#, fuzzy msgid "Can't rename index to PRIMARY!" -msgstr "Nu puteți redenumi indexul în PRIMARY!" +msgstr "Nu pot redenumi indexul în PRIMARY!" #: libraries/classes/Table.php:2089 -#, fuzzy msgid "No index parts defined!" -msgstr "Nu sînt definite părți din index!" +msgstr "Nicio parte de index definită!" #: libraries/classes/Table.php:2397 -#, fuzzy, php-format +#, php-format msgid "Error creating foreign key on %1$s (check data types)" -msgstr "Eroare la crearea cheii străine pe %1$s (verifică tipurile datelor)" +msgstr "Eroare la crearea cheii străine pe %1$s (verifică tipurile dedate)" #: libraries/classes/Template.php:127 -#, fuzzy, php-format -#| msgid "Error while loading the search." +#, php-format msgid "Error while working with template cache: %s" -msgstr "Eroare în timpul încărcării căutării." +msgstr "Eroare în timpul lucrului cu cache-ul șablonului: %s" #: libraries/classes/Theme.php:186 -#, fuzzy, php-format +#, php-format msgid "No valid image path for theme %s found!" -msgstr "Nu există o cale validă pentru tema %s!" +msgstr "Nicio cale validă de imagine găsită pentru tema %s!" #: libraries/classes/ThemeManager.php:94 -#, fuzzy, php-format +#, php-format msgid "Default theme %s not found!" -msgstr "Tema implicită %s nu a fost găsită!" +msgstr "Tema implicită %s negăsită!" #: libraries/classes/ThemeManager.php:174 -#, fuzzy, php-format +#, php-format msgid "Theme %s not found!" -msgstr "Tema %s nu a fost găsită!" +msgstr "Tema %s negăsită!" #: libraries/classes/ThemeManager.php:255 -#, fuzzy, php-format +#, php-format msgid "Theme path not found for theme %s!" -msgstr "Calea temei nu a fost găsită pentru tema %s!" +msgstr "Cale temă negăsită pentru tema %s!" #: libraries/classes/ThemeManager.php:345 -#, fuzzy msgid "Theme:" msgstr "Temă:" #: libraries/classes/Tracking.php:158 templates/server/plugins/section.twig:11 -#, fuzzy msgid "Version" -msgstr "Persană" +msgstr "Versiune" #: libraries/classes/Tracking.php:159 #: templates/database/tracking/tracked_tables.twig:13 -#, fuzzy msgid "Created" -msgstr "Creat" +msgstr "Creată" #: libraries/classes/Tracking.php:160 #: templates/database/tracking/tracked_tables.twig:14 -#, fuzzy msgid "Updated" -msgstr "Actualizat" +msgstr "Actualizată" #: libraries/classes/Tracking.php:169 libraries/classes/Tracking.php:233 -#, fuzzy -#| msgid "Create version" msgid "Delete version" -msgstr "Creează versiune" +msgstr "Șterge versiunea" #: libraries/classes/Tracking.php:170 libraries/classes/Tracking.php:332 #: templates/database/tracking/tracked_tables.twig:60 -#, fuzzy msgid "Tracking report" -msgstr "Raport de monitorizare" +msgstr "Raport de urmărire" #: libraries/classes/Tracking.php:171 libraries/classes/Tracking.php:659 #: templates/database/tracking/tracked_tables.twig:65 -#, fuzzy msgid "Structure snapshot" -msgstr "Instantaneu al structurii" +msgstr "Instantaneu structură" #: libraries/classes/Tracking.php:336 msgid "Tracking statements" -msgstr "" +msgstr "Declarații de urmărire" #: libraries/classes/Tracking.php:348 -#, fuzzy msgid "Delete tracking data row from report" -msgstr "Șterge datele urmărite din acest tabel" +msgstr "Șterge rândul cu date de urmărire din raport" #: libraries/classes/Tracking.php:359 -#, fuzzy msgid "No data" -msgstr "Nu sînt date" +msgstr "Nu există date" #: libraries/classes/Tracking.php:449 libraries/classes/Tracking.php:499 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" -msgstr "" +msgstr "Arată %1$s cu date de la %2$s la %3$s de utilizatorul %4$s %5$s" #: libraries/classes/Tracking.php:521 msgid "SQL dump (file download)" -msgstr "" +msgstr "Dump SQL (descărcare fișier)" #: libraries/classes/Tracking.php:523 msgid "SQL dump" -msgstr "" +msgstr "Dump SQL" #: libraries/classes/Tracking.php:526 msgid "This option will replace your table and contained data." -msgstr "" +msgstr "Această opțiune își va înlocui tabelul și datele pe care le conține." #: libraries/classes/Tracking.php:528 -#, fuzzy msgid "SQL execution" msgstr "Execuție SQL" #: libraries/classes/Tracking.php:533 -#, fuzzy, php-format +#, php-format msgid "Export as %s" msgstr "Exportă ca %s" #: libraries/classes/Tracking.php:559 msgid "Data manipulation statement" -msgstr "" +msgstr "Declarație manipulare date" #: libraries/classes/Tracking.php:583 msgid "Data definition statement" -msgstr "" +msgstr "Declarație definiție date" #: libraries/classes/Tracking.php:677 #, php-format msgid "Version %s snapshot (SQL code)" -msgstr "" +msgstr "Instantaneu versiune %s (cod SQL)" #: libraries/classes/Tracking.php:744 msgid "Tracking data definition successfully deleted" -msgstr "" +msgstr "Definiția datelor de urmărire ștearsă cu succes" #: libraries/classes/Tracking.php:754 msgid "Tracking data manipulation successfully deleted" -msgstr "" +msgstr "Manipularea datelor de urmărire ștearsă cu succes" #: libraries/classes/Tracking.php:808 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" +"Poți executa dump-ul prin crearea și folosirea unei baze de date temporare. " +"Asigură-te că ai privilegii să faci asta." #: libraries/classes/Tracking.php:812 msgid "Comment out these two lines if you do not need them." @@ -15539,46 +13347,42 @@ msgstr "" #: libraries/classes/Tracking.php:822 msgid "SQL statements exported. Please copy the dump or execute it." -msgstr "" +msgstr "Declarații SQL exportate. Te rog copiază dump-ul sau execută-l." #: libraries/classes/Tracking.php:870 #, php-format msgid "Tracking report for table `%s`" -msgstr "" +msgstr "Raport de urmărire pentru tabelul „%s”" #: libraries/classes/Tracking.php:900 -#, fuzzy, php-format -#| msgid "Tracking is active." +#, php-format msgid "Tracking for %1$s was activated at version %2$s." -msgstr "Monitorizarea este activată" +msgstr "Urmărirea %1$s a fost activată la versiunea %2$s." #: libraries/classes/Tracking.php:903 -#, fuzzy, php-format -#| msgid "Tracking is active." +#, php-format msgid "Tracking for %1$s was deactivated at version %2$s." -msgstr "Monitorizarea este activată" +msgstr "Urmărirea %1$s a fost dezactivată la versiunea %2$s." #: libraries/classes/Tracking.php:995 -#, fuzzy, php-format +#, php-format msgid "Version %1$s of %2$s was deleted." -msgstr "Creare relație" +msgstr "Versiunea %1$s a %2$s a fost ștearsă." #: libraries/classes/Tracking.php:1026 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." -msgstr "" +msgstr "Versiunea %1$s a fost creată, urmărirea %2$s este activă." #: libraries/classes/Tracking.php:1123 libraries/classes/Tracking.php:1267 #: templates/table/tracking/selectable_tables.twig:9 -#, fuzzy msgid "active" -msgstr "activ" +msgstr "activă" #: libraries/classes/Tracking.php:1126 libraries/classes/Tracking.php:1262 #: templates/table/tracking/selectable_tables.twig:11 -#, fuzzy msgid "not active" -msgstr "inactiv" +msgstr "inactivă" #: libraries/classes/Types.php:203 #, fuzzy @@ -15681,14 +13485,15 @@ msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" msgstr "Un sinonim pentru BIGINT FĂRĂ SEMN NENUL INCREMENTARE_AUTOMATĂ UNIC" #: libraries/classes/Types.php:265 -#, fuzzy, php-format +#, php-format msgid "A date, supported range is %1$s to %2$s" -msgstr "O combinaţie de dată şi timp, intervalul suportat este de %1$s la %2$s" +msgstr "O dată, intervalul suportat este de %1$s la %2$s" #: libraries/classes/Types.php:270 -#, fuzzy, php-format +#, php-format msgid "A date and time combination, supported range is %1$s to %2$s" -msgstr "O combinaţie de dată şi timp este suportată în intervalul %1$s la %2$s" +msgstr "" +"O combinație de dată și oră, intervalul suportat este de la %1$s la %2$s" #: libraries/classes/Types.php:275 msgid "" @@ -15697,76 +13502,69 @@ msgid "" msgstr "" #: libraries/classes/Types.php:281 -#, fuzzy, php-format +#, php-format msgid "A time, range is %1$s to %2$s" -msgstr "Perioadă de timp, intervalul suportat este de la %1$s la %2$s" +msgstr "O perioadă de timp, intervalul este de la %1$s la %2$s" #: libraries/classes/Types.php:285 -#, fuzzy msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" msgstr "" -"Un an în format de patru cifre (4, implicit) sau în format de două cifre (2)" -", valorile admisibile sunt de la 70 (1970) la 69(2069) sau din 1901 la 2155 " -"şi 0000" +"Un an, în format de patru cifre (4, implicit) sau în format de două cifre (2)" +", valorile admise sunt de la 70 (1970) la 69(2069) sau de la 1901 la 2155 și " +"0000" #: libraries/classes/Types.php:291 -#, fuzzy msgid "" "A fixed-length (0-255, default 1) string that is always right-padded with " "spaces to the specified length when stored" msgstr "" -"Un șir de caractere cu o lungime fixă (0-255, implicit 1) care este " -"întotdeauna umplut la dreapta cu spații până la lungimea specificată atunci " -"când este stocat" +"Un șir de o lungime fixă (0-255, implicit 1) care este mereu umplut cu " +"spații în dreapta, până la lungimea specificată, când este stocat" #: libraries/classes/Types.php:297 -#, fuzzy, php-format +#, php-format msgid "" "A variable-length (%s) string, the effective maximum length is subject to " "the maximum row size" msgstr "" -"Un şir de caractere de lungime variabilă (%s), lungimea maximă efectivă " -"depinde de dimensiunea maximă a înregistrării" +"Un șir de o lungime variabilă (%s), lungimea maximă efectivă depinde de " +"dimensiunea maximă a rândului" #: libraries/classes/Types.php:303 -#, fuzzy msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" msgstr "" "O coloană TEXT cu o lungime maximă de 255 (2^8 - 1) de caractere, stocate cu " -"un prefix de un octet care indică lungimea de valoare în octeţi" +"un prefix de un octet care indică lungimea valorii în octeți" #: libraries/classes/Types.php:309 -#, fuzzy msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" msgstr "" "O coloană TEXT cu o lungime maximă de 65.535 (2^16-1) de caractere, stocate " -"cu un prefix de doi octeți care indică lungimea valorii în octeţi" +"cu un prefix de doi octeți care indică lungimea valorii în octeți" #: libraries/classes/Types.php:315 -#, fuzzy msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" msgstr "" "O coloană TEXT cu o lungime maximă de 16.777.215 (2^24 - 1) de caractere, " -"stocate cu un prefix de trei octeți care indică lungimea valorii în octeţi" +"stocate cu un prefix de trei octeți care indică lungimea valorii în octeți" #: libraries/classes/Types.php:321 -#, fuzzy msgid "" "A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "characters, stored with a four-byte prefix indicating the length of the " "value in bytes" msgstr "" -"O coloană TEXT cu o lungime maximă de 4.294.967.295 sau 4GB (2^32 - 1) de " -"caractere, stocate cu un prefix de patru octeți care indică lungimea valorii " -"în octeţi" +"O coloană TEXT cu o lungime maximă de 4.294.967.295 (2^32 - 1) de caractere " +"sau 4 GiO, stocate cu un prefix de patru octeți care indică lungimea valorii " +"în octeți" #: libraries/classes/Types.php:327 #, fuzzy @@ -15811,119 +13609,101 @@ msgid "" msgstr "" #: libraries/classes/Types.php:359 -#, fuzzy msgid "" "An enumeration, chosen from the list of up to 65,535 values or the special " "'' error value" msgstr "" -"O enumeraţie, aleasă din lista de până la 65,535 valori sau valoare de " -"eroare ''" +"O enumerare, aleasă din lista de până la 65.535 de valori sau valoarea " +"specială de eroare ''" #: libraries/classes/Types.php:363 -#, fuzzy msgid "A single value chosen from a set of up to 64 members" msgstr "O singură valoare aleasă dintr-un set de până la 64 de membri" #: libraries/classes/Types.php:365 -#, fuzzy msgid "A type that can store a geometry of any type" -msgstr "Un tip poate stoca o geometrie de orice tip" +msgstr "Un tip care poate stoca o geometrie de orice tip" #: libraries/classes/Types.php:367 -#, fuzzy msgid "A point in 2-dimensional space" msgstr "Un punct într-un plan bidimensional" #: libraries/classes/Types.php:369 -#, fuzzy msgid "A curve with linear interpolation between points" -msgstr "O curbă cu o interpolare liniară între două puncte" +msgstr "O curbă cu interpolare liniară între două puncte" #: libraries/classes/Types.php:371 -#, fuzzy msgid "A polygon" msgstr "Un poligon" #: libraries/classes/Types.php:373 -#, fuzzy msgid "A collection of points" -msgstr "O colecţie de puncte" +msgstr "O colecție de puncte" #: libraries/classes/Types.php:376 -#, fuzzy msgid "A collection of curves with linear interpolation between points" -msgstr "O colecţie de curbe cu interpolare liniară între puncte" +msgstr "O colecție de curbe cu interpolare liniară între puncte" #: libraries/classes/Types.php:379 -#, fuzzy msgid "A collection of polygons" -msgstr "O colecţie de poligoane" +msgstr "O colecție de poligoane" #: libraries/classes/Types.php:381 -#, fuzzy msgid "A collection of geometry objects of any type" -msgstr "O colecţie de obiecte geometrice de orice tip" +msgstr "O colecție de obiecte geometrice de orice tip" #: libraries/classes/Types.php:384 msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" msgstr "" +"Stochează și permite accesul eficient la date în documentele JSON (" +"JavaScript Object Notation)" #: libraries/classes/Types.php:695 -#, fuzzy msgctxt "numeric types" msgid "Numeric" -msgstr "tip numeric" +msgstr "Numeric" #: libraries/classes/Types.php:713 -#, fuzzy msgctxt "date and time types" msgid "Date and time" -msgstr "Dată şi oră" +msgstr "Dată și oră" #: libraries/classes/Types.php:743 -#, fuzzy msgctxt "spatial types" msgid "Spatial" -msgstr "Spaţial" +msgstr "Spațial" #: libraries/classes/UserPassword.php:62 -#, fuzzy msgid "The profile has been updated." msgstr "Profilul a fost actualizat." #: libraries/classes/UserPassword.php:74 -#, fuzzy -#| msgid "Password Hashing" msgid "Password is too long!" -msgstr "Criptare Parola" +msgstr "Parola este prea lungă!" #: libraries/classes/UserPreferences.php:144 -#, fuzzy -#| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save configuration" -msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”" +msgstr "Nu am putut salva configurarea" #: libraries/classes/Util.php:175 -#, fuzzy, php-format +#, php-format msgid "Max: %s%s" -msgstr "Mărime maximă: %s%s" +msgstr "Maxim: %s%s" #: libraries/classes/Util.php:549 -#, fuzzy msgid "Static analysis:" msgstr "Analiză statică:" #: libraries/classes/Util.php:552 -#, fuzzy, php-format +#, php-format msgid "%d errors were found during analysis." msgstr "Au fost găsite %d erori în timpul analizei." #: libraries/classes/Util.php:1052 -#, fuzzy msgid "Skip Explain SQL" -msgstr "Sari peste explicarea SQL" +msgstr "Sari peste Explică SQL" #: libraries/classes/Util.php:1060 #, php-format @@ -15931,123 +13711,106 @@ msgid "Analyze Explain at %s" msgstr "" #: libraries/classes/Util.php:1091 -#, fuzzy -#| msgid "Without PHP Code" msgid "Without PHP code" -msgstr "fără cod PHP" +msgstr "Fără cod PHP" #: libraries/classes/Util.php:1098 #: templates/database/multi_table_query/form.twig:161 -#, fuzzy -#| msgid "Submit Query" msgid "Submit query" -msgstr "Trimite comanda" +msgstr "Trimite interogarea" #: libraries/classes/Util.php:1164 -#, fuzzy -#| msgid "Edit index" msgctxt "Inline edit query" msgid "Edit inline" -msgstr "Modifică index" +msgstr "Editează în-linie" #. l10n: Short week day name #: libraries/classes/Util.php:1504 -#, fuzzy msgctxt "Short week day name" msgid "Sun" -msgstr "Dum" +msgstr "D" #: libraries/classes/Util.php:1541 msgctxt "AM/PM indication in time" msgid "PM" -msgstr "" +msgstr "PM" #: libraries/classes/Util.php:1543 msgctxt "AM/PM indication in time" msgid "AM" -msgstr "" +msgstr "AM" #: libraries/classes/Util.php:1837 -#, fuzzy, php-format +#, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s zile, %s ore, %s minute și %s secunde" #: libraries/classes/Util.php:1872 -#, fuzzy msgid "Missing parameter:" -msgstr "Parametru lipsă:" +msgstr "Lipsește parametrul:" #: libraries/classes/Util.php:2416 -#, fuzzy, php-format -#| msgid "Jump to database \"%s\"." +#, php-format msgid "Jump to database “%s”." -msgstr "Sari la baza de date \"%s\"." +msgstr "Sari la baza de date „%s”." #: libraries/classes/Util.php:2441 -#, fuzzy, php-format +#, php-format msgid "The %s functionality is affected by a known bug, see %s" -msgstr "Funcționalitatea %s este afectată de o eroare cunoscută, vedeți %s" +msgstr "Funcționalitatea %s este afectată de o eroare cunoscută, vezi %s" #: libraries/classes/Util.php:3229 prefs_manage.php:236 -#, fuzzy msgid "Browse your computer:" msgstr "Caută în calculatorul tău:" #: libraries/classes/Util.php:3254 -#, fuzzy, php-format +#, php-format msgid "Select from the web server upload directory %s:" -msgstr "Selectați de pe serverul web un director %s: pentru încărcări:" +msgstr "Selectează de pe serverul web un director pentru încărcări %s:" #: libraries/classes/Util.php:3294 -#, fuzzy msgid "There are no files to upload!" -msgstr "Nu sunt fișiere pentru încărcare!" +msgstr "Niciun fișier pentru încărcare!" #: libraries/classes/Util.php:3319 libraries/classes/Util.php:3320 #: templates/database/structure/check_all_tables.twig:15 -#, fuzzy msgid "Empty" msgstr "Golește" #: libraries/classes/Util.php:3325 libraries/classes/Util.php:3326 -#, fuzzy msgid "Execute" msgstr "Execută" #: libraries/classes/Util.php:3829 msgid "SSL is not being used" -msgstr "" +msgstr "Nu se folosește SSL" #: libraries/classes/Util.php:3834 msgid "SSL is used with disabled verification" -msgstr "" +msgstr "Este folosit SSL cu verificarea dezactivată" #: libraries/classes/Util.php:3836 msgid "SSL is used without certification authority" -msgstr "" +msgstr "Este folosit SSL fără autoritatea de certificare" #: libraries/classes/Util.php:3839 msgid "SSL is used" -msgstr "" +msgstr "Este folosit SSL" #: libraries/classes/Util.php:3960 -#, fuzzy msgid "Users" msgstr "Utilizatori" #: libraries/classes/Util.php:4652 #: templates/database/multi_table_query/form.twig:46 -#, fuzzy msgid "Sort" -msgstr "Sortare" +msgstr "Sortează" #: libraries/classes/ZipExtension.php:44 -#, fuzzy msgid "No files found inside ZIP archive!" -msgstr "Niciun fișier nu a fost găsit în arhiva ZIP!" +msgstr "Niciun fișier găsit în arhiva ZIP!" #: libraries/classes/ZipExtension.php:72 libraries/classes/ZipExtension.php:79 -#, fuzzy msgid "Error in ZIP archive:" msgstr "Eroare în arhiva ZIP:" @@ -16056,182 +13819,145 @@ msgid "" "Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to " "access phpMyAdmin." msgstr "" +"Setarea cookie-urilor de sesiune a eșuat. Probabil folosești HTTP în loc de " +"HTTPS pentru a accesa phpMyAdmin." #: libraries/common.inc.php:338 -#, fuzzy msgid "Invalid authentication method set in configuration:" -msgstr "Metodă de autentificare nevalidă stabilită în configurație:" +msgstr "Metodă de autentificare invalidă setată în configurare:" #: libraries/common.inc.php:391 -#, fuzzy, php-format +#, php-format msgid "You should upgrade to %s %s or later." -msgstr "Ar trebui sa reactualizati serverul %s %s la o versiune mai noua." +msgstr "Ar trebui să actualizezi %s %s sau ulterioară." #: libraries/common.inc.php:444 -#, fuzzy msgid "Error: Token mismatch" -msgstr "Eroare: Tokenii nu se potrivesc" +msgstr "Eroare: tokenul nu se potrivește" #: libraries/config.values.php:56 libraries/config.values.php:76 #: libraries/config.values.php:88 -#, fuzzy msgid "Icons" -msgstr "Pictograme" +msgstr "Iconuri" #: libraries/config.values.php:57 libraries/config.values.php:77 #: libraries/config.values.php:89 #: templates/database/multi_table_query/form.twig:96 -#, fuzzy msgid "Text" msgstr "Text" #: libraries/config.values.php:58 libraries/config.values.php:66 #: libraries/config.values.php:78 libraries/config.values.php:90 -#, fuzzy msgid "Both" msgstr "Ambele" #: libraries/config.values.php:63 -#, fuzzy msgid "Nowhere" msgstr "Nicăieri" #: libraries/config.values.php:64 -#, fuzzy msgid "Left" msgstr "Stânga" #: libraries/config.values.php:65 -#, fuzzy msgid "Right" msgstr "Dreapta" #: libraries/config.values.php:93 -#, fuzzy msgid "Click" -msgstr "Click" +msgstr "Dă clic" #: libraries/config.values.php:94 -#, fuzzy msgid "Double click" -msgstr "Click dublu" +msgstr "Clic dublu" #: libraries/config.values.php:98 -#, fuzzy msgid "key" msgstr "cheie" #: libraries/config.values.php:99 -#, fuzzy -#| msgid "Displaying Column Comments" msgid "display column" -msgstr "Afișează tabelul de coloane" +msgstr "afișează coloana" #: libraries/config.values.php:103 -#, fuzzy -#| msgid "Welcome to %s" msgid "Welcome" -msgstr "Bine ați venit la %s" +msgstr "Bine ai venit" #: libraries/config.values.php:123 -#, fuzzy msgid "Open" msgstr "Deschis" #: libraries/config.values.php:124 -#, fuzzy msgid "Closed" msgstr "Închis" #: libraries/config.values.php:128 -#, fuzzy msgid "Ask before sending error reports" -msgstr "Întreabă înainte de a trimite rapoarte de eroare" +msgstr "Întreabă înainte de trimiterea rapoartelor de erori" #: libraries/config.values.php:129 -#, fuzzy msgid "Always send error reports" -msgstr "Trimite mereu rapoarte de eroare" +msgstr "Trimite mereu rapoarte de erori" #: libraries/config.values.php:130 -#, fuzzy msgid "Never send error reports" -msgstr "Nu trimite niciodată rapoarte de eroare" +msgstr "Nu trimite niciodată rapoarte de erori" #: libraries/config.values.php:133 -#, fuzzy -#| msgid "Set default" msgid "Server default" -msgstr "Setaţi ca implicit" +msgstr "Server implicit" #: libraries/config.values.php:134 -#, fuzzy -#| msgid "Enabled" msgid "Enable" -msgstr "Activat" +msgstr "Activează" #: libraries/config.values.php:135 -#, fuzzy -#| msgid "Disabled" msgid "Disable" -msgstr "Dezactivat" +msgstr "Dezactivează" #: libraries/config.values.php:169 -#, fuzzy msgid "Quick - display only the minimal options to configure" -msgstr "Rapid - afișează doar opțiunile minimale pentru configurare" +msgstr "Rapid - afișează numai opțiunile minime pentru configurare" #: libraries/config.values.php:170 -#, fuzzy msgid "Custom - display all possible options to configure" -msgstr "Customizat - afișează toate opțiunile posibile pentru configurare" +msgstr "Personalizat - afișează toate opțiunile posibile pentru configurare" #: libraries/config.values.php:172 -#, fuzzy msgid "Custom - like above, but without the quick/custom choice" -msgstr "Customizat - ca mai sus, dar fără alegerea de rapid/customizat" +msgstr "Personalizat - ca mai sus, dar fără alegerea rapid/personalizat" #: libraries/config.values.php:201 -#, fuzzy msgid "complete inserts" msgstr "inserări complete" #: libraries/config.values.php:202 -#, fuzzy msgid "extended inserts" msgstr "inserări extinse" #: libraries/config.values.php:203 -#, fuzzy msgid "both of the above" msgstr "ambele de mai sus" #: libraries/config.values.php:204 -#, fuzzy msgid "neither of the above" -msgstr "niciuna din cele de mai sus" +msgstr "niciuna din cele de sus" #: libraries/mult_submits.inc.php:321 msgid "Success!" -msgstr "" +msgstr "Succes!" #: libraries/user_preferences.inc.php:31 -#, fuzzy -#| msgid "General relation features" msgid "Manage your settings" -msgstr "Facilități generale" +msgstr "Administrează-ți setările" #: libraries/user_preferences.inc.php:38 -#, fuzzy -#| msgid "Config authentication" msgid "Two-factor authentication" -msgstr "Autentificare Config" +msgstr "Autentificare pe două niveluri" #: libraries/user_preferences.inc.php:63 prefs_manage.php:296 -#, fuzzy -#| msgid "Modifications have been saved" msgid "Configuration has been saved." -msgstr "Modificările au fost salvate" +msgstr "Configurarea a fost salvată." #: libraries/user_preferences.inc.php:70 #, php-format @@ -16239,80 +13965,69 @@ msgid "" "Your preferences will be saved for current session only. Storing them " "permanently requires %sphpMyAdmin configuration storage%s." msgstr "" +"Preferințele tale vor fi salvate numai pentru sesiunea curentă. Stocarea lor " +"permanentă necesită %sspațiu de stocare pentru configurarea phpMyAdmin%s." #: navigation.php:23 msgid "Fatal error: The navigation can only be accessed via AJAX" -msgstr "" +msgstr "Eroare fatală: navigarea poate fi accesată numai prin AJAX" #: prefs_forms.php:28 setup/frames/form.inc.php:21 msgid "Incorrect form specified!" -msgstr "" +msgstr "Formular specificat incorect!" #: prefs_forms.php:80 -#, fuzzy -#| msgid "Cannot save settings, submitted form contains errors" msgid "Cannot save settings, submitted form contains errors!" -msgstr "Nu se pot salva setările, formularul trimis conține erori" +msgstr "Nu pot salva setările, formularul trimis conține erori!" #: prefs_manage.php:50 -#, fuzzy -#| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" -msgstr "Tabele de stocare a configurării phpMyAdmin absente" +msgstr "Fragment configurare phpMyAdmin" #: prefs_manage.php:51 msgid "Paste it to your config.inc.php" -msgstr "" +msgstr "Plasează-l în config.inc.php" #: prefs_manage.php:91 -#, fuzzy msgid "Could not import configuration" -msgstr "Nu s-a putut importa configurația" +msgstr "Nu am putut importa configurarea" #: prefs_manage.php:119 -#, fuzzy msgid "Configuration contains incorrect data for some fields." -msgstr "Configurația conține date incorecte pentru anumite câmpuri." +msgstr "Configurarea conține date incorecte pentru anumite câmpuri." #: prefs_manage.php:138 -#, fuzzy msgid "Do you want to import remaining settings?" -msgstr "Doriți să importați setările rămase?" +msgstr "Vrei să imporți setările rămase?" #: prefs_manage.php:219 prefs_manage.php:248 -#, fuzzy msgid "Saved on: @DATE@" msgstr "Salvat pe: @DATE@" #: prefs_manage.php:234 -#, fuzzy msgid "Import from file" -msgstr "Importați din fișier" +msgstr "Importă din fișier" #: prefs_manage.php:242 -#, fuzzy msgid "Import from browser's storage" -msgstr "Importați din depozitul browser-ului" +msgstr "Importă din depozitul navigatorului" #: prefs_manage.php:245 -#, fuzzy msgid "Settings will be imported from your browser's local storage." msgstr "" -"Setările vor fi importate din depozitul local al browser-ului dumneavoastră." +"Setările vor fi importate din spațiul de stocare local al navigatorului tău." #: prefs_manage.php:251 -#, fuzzy msgid "You have no saved settings!" -msgstr "Nu aveți setări salvate!" +msgstr "Nu ai setări salvate!" #: prefs_manage.php:256 prefs_manage.php:341 -#, fuzzy msgid "This feature is not supported by your web browser" -msgstr "Această facilitate nu este suportată de browser-ul dumneavoastră web" +msgstr "Această funcționalitate nu este suportată de navigatorul tău web" #: prefs_manage.php:262 msgid "Merge with current configuration" -msgstr "" +msgstr "Îmbină cu configurarea actuală" #: prefs_manage.php:279 #, php-format @@ -16320,100 +14035,94 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" +"Poți seta mai multe setări modificând config.inc.php, de exemplu folosind %" +"sscriptul de inițializare%s." #: prefs_manage.php:312 -#, fuzzy -#| msgid "Save as file" msgid "Save as PHP file" -msgstr "Salvează ca fișier" +msgstr "Salvează ca fișier PHP" #: prefs_manage.php:317 msgid "Save to browser's storage" -msgstr "" +msgstr "Salvează în spațiul de stocare al navigatorului" #: prefs_manage.php:324 msgid "Settings will be saved in your browser's local storage." msgstr "" +"Setările vor fi salvate în spațiul de stocare local al navigatorului tău." #: prefs_manage.php:332 msgid "Existing settings will be overwritten!" -msgstr "" +msgstr "Setările existente vor fi contramandate!" #: prefs_manage.php:360 msgid "You can reset all your settings and restore them to default values." msgstr "" +"Poți să resetezi toate setările și să le restaurezi la valorile implicite." #: prefs_twofactor.php:29 -#, fuzzy -#| msgid "Internal relation added" msgid "Two-factor authentication has been removed." -msgstr "Relație internă adăugată" +msgstr "Autentificarea pe două niveluri a fost înlăturată." #: prefs_twofactor.php:39 -#, fuzzy -#| msgid "Invalid authentication method set in configuration:" msgid "Two-factor authentication has been configured." -msgstr "Metodă de autentificare nevalidă stabilită în configurație:" +msgstr "Autentificarea pe două niveluri a fost configurată." #: server_export.php:25 -#, fuzzy msgid "View dump (schema) of databases" -msgstr "Vizualizarea schemei bazei de date" +msgstr "Vezi dump-ul (schema) bazei de date" #: server_privileges.php:143 server_replication.php:38 #: server_user_groups.php:30 templates/server/databases/create.twig:46 -#, fuzzy msgid "No Privileges" -msgstr "Nu există drepturi de acces" +msgstr "Niciun privilegiu" #: server_privileges.php:150 -#, fuzzy -#| msgid "You don't have sufficient privileges to be here right now!" msgid "You do not have privileges to manipulate with the users!" -msgstr "Nu dețineți drepturi de acces pentru a vă afla aici!" +msgstr "Nu ai privilegii pentru a gestiona utilizatorii!" #: server_privileges.php:164 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." msgstr "" +"Numele de utilizator și numele gazdei nu s-au schimbat. Dacă vrei să schimbi " +"numai parola, trebuie să folosești fila „Schimbă parola”." #: server_status.php:35 msgid "Not enough privilege to view server status." -msgstr "" +msgstr "Nu ai privilegii suficiente pentru a vedea starea serverului." #: server_status_advisor.php:33 msgid "Not enough privilege to view the advisor." -msgstr "" +msgstr "Nu ai privilegii suficiente pentru a vedea consultantul." #: server_status_processes.php:33 -#, fuzzy, php-format +#, php-format msgid "Thread %s was successfully killed." msgstr "Firul de execuție %s a fost oprit cu succes." #: server_status_processes.php:39 -#, fuzzy, php-format +#, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -"phpMyAdmin n-a reusit sa opreasca firul de executie %s. Probabil a fost " -"deja oprit." +"phpMyAdmin nu a putut să oprească firul de execuție %s. Probabil el a fost " +"deja închis." #: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." -msgstr "" +msgstr "Nu ai privilegii suficiente pentru a vedea statisticile de interogare." #: server_status_variables.php:52 msgid "Not enough privilege to view status variables." -msgstr "" +msgstr "Nu ai privilegii suficiente pentru a vedea variabilele stării." #: setup/frames/config.inc.php:17 setup/frames/index.inc.php:189 -#, fuzzy msgid "Configuration file" msgstr "Fișier de configurare" #: setup/frames/config.inc.php:34 setup/frames/index.inc.php:252 -#, fuzzy msgid "Download" msgstr "Descarcă" @@ -16422,35 +14131,37 @@ msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" msgstr "" +"Nu folosești o conexiune securizată; toate datele (inclusiv informațiile " +"potențial sensibile, cum ar fi parolele) sunt transferate necriptate!" #: setup/frames/index.inc.php:54 msgid "" "If your server is also configured to accept HTTPS requests follow this link " "to use a secure connection." msgstr "" +"Dacă serverul tău este configurat să accepte și solicitări HTTPS, urmărește " +"această legătură pentru a folosi o conexiune securizată." #: setup/frames/index.inc.php:58 -#, fuzzy msgid "Insecure connection" -msgstr "Comprimă conexiunea" +msgstr "Conexiune nesigură" #: setup/frames/index.inc.php:84 -#, fuzzy -#| msgid "Modifications have been saved" msgid "Configuration saved." -msgstr "Modificările au fost salvate" +msgstr "Configurare salvată." #: setup/frames/index.inc.php:87 msgid "" "Configuration saved to file config/config.inc.php in phpMyAdmin top level " "directory, copy it to top level one and delete directory config to use it." msgstr "" +"Configurarea a fost salvată în fișierul config/config.inc.php în directorul " +"de nivel superior phpMyAdmin, copiază-l la primul nivel și șterge " +"configurarea directorului pentru a-l utiliza." #: setup/frames/index.inc.php:97 -#, fuzzy -#| msgid "Modifications have been saved" msgid "Configuration not saved!" -msgstr "Modificările au fost salvate" +msgstr "Configurare nesalvată!" #: setup/frames/index.inc.php:100 msgid "" @@ -16458,77 +14169,74 @@ msgid "" "level directory as described in [doc@setup_script]documentation[/doc]. " "Otherwise you will be only able to download or display it." msgstr "" +"Te rog creează dosarul [em]config[/em] care poate fi scris pe serverul web " +"în directorul phpMyAdmin de nivel superior așa cum este descris în " +"[doc@setup_script]documentație[/doc]. Altfel, vei putea numai să-l descarci " +"sau să-l afișezi." #: setup/frames/index.inc.php:112 setup/frames/menu.inc.php:20 msgid "Overview" -msgstr "" +msgstr "Prezentare generală" #: setup/frames/index.inc.php:119 msgid "Show hidden messages (#MSG_COUNT)" -msgstr "" +msgstr "Arată mesajele ascunse (#MSG_COUNT)" #: setup/frames/index.inc.php:170 msgid "There are no configured servers" -msgstr "" +msgstr "Nu există niciun server configurat" #: setup/frames/index.inc.php:179 -#, fuzzy msgid "New server" -msgstr "Server Web" +msgstr "Server nou" #: setup/frames/index.inc.php:208 msgid "Default language" -msgstr "" +msgstr "Limbă implicită" #: setup/frames/index.inc.php:218 msgid "let the user choose" -msgstr "" +msgstr "lasă la alegerea utilizatorului" #: setup/frames/index.inc.php:229 msgid "- none -" -msgstr "" +msgstr "- niciunul -" #: setup/frames/index.inc.php:233 msgid "Default server" -msgstr "" +msgstr "Server implicit" #: setup/frames/index.inc.php:245 msgid "End of line" -msgstr "" +msgstr "Sfârșit de linie" #: setup/frames/index.inc.php:251 -#, fuzzy msgid "Display" msgstr "Afișează" #: setup/frames/index.inc.php:264 -#, fuzzy msgid "phpMyAdmin homepage" -msgstr "Documentație phpMyAdmin" +msgstr "Pagină principală phpMyAdmin" #: setup/frames/index.inc.php:266 -#, fuzzy msgid "Donate" -msgstr "Date" +msgstr "Donează" #: setup/frames/index.inc.php:268 -#, fuzzy msgid "Check for latest version" -msgstr "Verificați pentru ultima versiune" +msgstr "Verifică ultima versiune" #: setup/frames/servers.inc.php:27 -#, fuzzy msgid "Edit server" -msgstr "Redactează serverul" +msgstr "Editează serverul" #: setup/frames/servers.inc.php:37 -#, fuzzy msgid "Add a new server" msgstr "Adaugă un server nou" #: setup/index.php:18 msgid "Configuration already exists, setup is disabled!" -msgstr "" +msgstr "Configurarea există deja, inițializarea este dezactivată!" #: setup/index.php:28 msgid "Wrong GET file attribute value" @@ -16536,40 +14244,39 @@ msgstr "" #: setup/lib/FormProcessing.php:61 msgid "Warning" -msgstr "" +msgstr "Avertizare" #: setup/lib/FormProcessing.php:62 msgid "Submitted form contains errors" -msgstr "" +msgstr "Formularul trimis conține erori" #: setup/lib/FormProcessing.php:64 msgid "Try to revert erroneous fields to their default values" -msgstr "" +msgstr "Încearcă să readuci câmpurile eronate la valorile lor implicite" #: setup/lib/FormProcessing.php:69 msgid "Ignore errors" -msgstr "" +msgstr "Ignoră erorile" #: setup/lib/FormProcessing.php:73 -#, fuzzy msgid "Show form" -msgstr "Arată culoarea" +msgstr "Arată formularul" #: setup/lib/Index.php:124 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." msgstr "" +"Citirea versiunii a eșuat. Poate că ești offline sau serverul de actualizare " +"nu răspunde." #: setup/lib/Index.php:146 -#, fuzzy msgid "Got invalid version string from server" -msgstr "A primit de la server un număr de versiune invalid" +msgstr "A primit de la server un șir de versiuni invalid" #: setup/lib/Index.php:159 -#, fuzzy msgid "Unparsable version string" -msgstr "Şirul de caractere al versiunii nu este descifrabil." +msgstr "Șir versiuni care nu poate fi interpretat" #: setup/lib/Index.php:179 #, php-format @@ -16579,136 +14286,109 @@ msgid "" msgstr "" #: setup/lib/Index.php:186 -#, fuzzy msgid "No newer stable version is available" -msgstr "Nu este disponibilă nici o versiune stabilă nouă" +msgstr "Nu este disponibilă nicio versiune stabilă mai nouă" #: setup/validate.php:26 -#, fuzzy msgid "Wrong data" msgstr "Date greșite" #: setup/validate.php:32 #, php-format msgid "Wrong data or no validation for %s" -msgstr "" +msgstr "Date greșite sau nicio validare pentru %s" #: tbl_create.php:36 tbl_get_field.php:31 -#, fuzzy, php-format +#, php-format msgid "'%s' database does not exist." msgstr "Baza de date „%s” nu există." #: tbl_create.php:46 -#, fuzzy, php-format +#, php-format msgid "Table %s already exists!" msgstr "Tabelul %s există deja!" #: tbl_export.php:44 -#, fuzzy msgid "View dump (schema) of table" -msgstr "Vizualizarea schemei tabelului" +msgstr "Vezi dump-ul (schema) tabelului" #: tbl_get_field.php:38 -#, fuzzy msgid "Invalid table name" -msgstr "Denumire de tabel nevalidă" +msgstr "Nume tabel invalid" #: tbl_replace.php:243 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" -msgstr "" +msgstr "Rând: %1$s, coloană: %2$s, eroare: %3$s" #: tbl_row_action.php:73 -#, fuzzy -#| msgid "No rows selected" msgid "No row selected." -msgstr "Nici un rând selectat" +msgstr "Niciun rând selectat." #: tbl_tracking.php:34 -#, fuzzy, php-format -#| msgid "Tracking is active." +#, php-format msgid "Tracking of %s is activated." -msgstr "Monitorizarea este activată" +msgstr "Urmărirea %s este activată." #: tbl_tracking.php:103 -#, fuzzy -#| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." -msgstr "Utilizatorii selectați au fost eliminați." +msgstr "Urmărirea versiunilor a fost ștearsă cu succes." #: tbl_tracking.php:108 -#, fuzzy -#| msgid "No rows selected" msgid "No versions selected." -msgstr "Nici un rând selectat" +msgstr "Nicio versiune selectată." #: tbl_tracking.php:139 msgid "SQL statements executed." -msgstr "" +msgstr "Declarații SQL executate." #: themes.php:22 themes.php:27 -#, fuzzy msgid "Theme" msgstr "Temă" #: themes.php:30 -#, fuzzy msgid "Get more themes!" -msgstr "Obține mai multe teme!" +msgstr "Ia mai multe teme!" #: transformation_overview.php:24 -#, fuzzy msgid "Available MIME types" -msgstr "Tipuri MIME disponibile" +msgstr "Tipuri de MIME disponibile" #: transformation_overview.php:39 -#, fuzzy -#| msgid "Available transformations" msgid "Available browser display transformations" -msgstr "Transformări disponibile" +msgstr "Transformări afișare navigator disponibile" #: transformation_overview.php:40 -#, fuzzy -#| msgid "Available transformations" msgid "Available input transformations" -msgstr "Transformări disponibile" +msgstr "Transformări de intrare disponibile" #: transformation_overview.php:43 #: templates/columns_definitions/table_fields_definitions.twig:78 -#, fuzzy -#| msgid "Browser transformation" msgid "Browser display transformation" -msgstr "Transformare navigator" +msgstr "Transformare afișare navigator" #: transformation_overview.php:44 #: templates/columns_definitions/table_fields_definitions.twig:89 -#, fuzzy -#| msgid "Browser transformation" msgid "Input transformation" -msgstr "Transformare navigator" +msgstr "Transformare intrare" #: transformation_overview.php:55 -#, fuzzy msgctxt "for MIME transformation" msgid "Description" msgstr "Descriere" #: templates/table/structure/move_columns_dialog.twig:1 #: templates/table/structure/optional_action_links.twig:19 -#, fuzzy -#| msgid "Add columns" msgid "Move columns" -msgstr "Adaugă coloane" +msgstr "Mută coloane" #: templates/table/structure/move_columns_dialog.twig:2 msgid "Move the columns by dragging them up and down." -msgstr "" +msgstr "Mută coloanele trăgându-le în sus și jos." #: templates/display/export/options_output_radio.twig:5 -#, fuzzy -#| msgid "Save as file" msgid "View output as text" -msgstr "Trimite" +msgstr "Vizualizează ieșirea ca text" #: templates/database/structure/check_all_tables.twig:6 #, fuzzy @@ -16716,151 +14396,125 @@ msgid "Check tables having overhead" msgstr "Verificare depășit" #: templates/database/structure/check_all_tables.twig:10 -#, fuzzy -#| msgid "No tables" msgid "Copy table" -msgstr "Nu există tabele" +msgstr "Copiază tabelul" #: templates/database/structure/check_all_tables.twig:11 -#, fuzzy -#| msgid "Show color" msgid "Show create" -msgstr "Arată culoarea" +msgstr "Arată creează" #: templates/database/structure/check_all_tables.twig:25 msgid "Prefix" -msgstr "" +msgstr "Prefix" #: templates/database/structure/check_all_tables.twig:26 -#, fuzzy msgid "Add prefix to table" -msgstr "Adaugă prefix la tabelă" +msgstr "Adaugă prefix la tabel" #: templates/database/structure/check_all_tables.twig:27 -#, fuzzy msgid "Replace table prefix" -msgstr "Înlocuiește prefixul tabelei" +msgstr "Înlocuiește prefix tabel" #: templates/database/structure/check_all_tables.twig:33 -#, fuzzy -#| msgid "CHAR textarea columns" msgid "Add columns to central list" -msgstr "coloane textarea CHAR" +msgstr "Adaugă coloane la lista centrală" #: templates/database/structure/check_all_tables.twig:34 msgid "Remove columns from central list" -msgstr "" +msgstr "Înlătură coloanele din lista centrală" #: templates/database/structure/check_all_tables.twig:35 -#, fuzzy -#| msgid "CHAR textarea columns" msgid "Make consistent with central list" -msgstr "coloane textarea CHAR" +msgstr "Asigură consecvență în lista centrală" #: templates/prefs_twofactor_confirm.twig:2 -#, fuzzy -#| msgid "Config authentication" msgid "Confirm disabling two-factor authentication" -msgstr "Autentificare Config" +msgstr "Confirmă dezactivarea autentificării pe două niveluri" #: templates/prefs_twofactor_confirm.twig:5 msgid "" "By disabling two factor authentication you will be again able to login using " "password only." msgstr "" +"Prin dezactivarea autentificării pe două niveluri, vei putea să te " +"autentifici din nou folosind numai parola." #: templates/prefs_twofactor_confirm.twig:9 templates/prefs_twofactor.twig:37 -#, fuzzy -#| msgid "Config authentication" msgid "Disable two-factor authentication" -msgstr "Autentificare Config" +msgstr "Dezactivează autentificarea pe două niveluri" #: templates/database/tracking/tracked_tables.twig:2 -#, fuzzy msgid "Tracked tables" -msgstr "Tabele monitorizate" +msgstr "Tabele urmărite" #: templates/database/tracking/tracked_tables.twig:12 -#, fuzzy msgid "Last version" msgstr "Ultima versiune" #: templates/database/tracking/tracked_tables.twig:49 #: templates/database/tracking/tracked_tables.twig:77 -#, fuzzy msgid "Delete tracking" -msgstr "Se șterg datele monitorizare" +msgstr "Șterge urmărirea" #: templates/database/tracking/tracked_tables.twig:55 -#, fuzzy msgid "Versions" msgstr "Versiuni" #: templates/display/import/import.twig:40 -#, fuzzy msgid "Importing into the current server" -msgstr "Se importă pe server-ul curent" +msgstr "Import în serverul curent" #: templates/display/import/import.twig:42 -#, fuzzy, php-format +#, php-format msgid "Importing into the database \"%s\"" -msgstr "Se importă în baza de date \"%s\"" +msgstr "Import în baza de date „%s”" #: templates/display/import/import.twig:44 -#, fuzzy, php-format +#, php-format msgid "Importing into the table \"%s\"" -msgstr "Se importă în tabela \"%s\"" +msgstr "Import în tabelul „%s\"”" #: templates/display/import/import.twig:50 -#, fuzzy -#| msgid "File to import" msgid "File to import:" -msgstr "Fișier de importat" +msgstr "Fișier de importat:" #: templates/display/import/import.twig:56 -#, fuzzy, php-format +#, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "Fișierul poate fi comprimat (%s) sau necomprimat." #: templates/display/import/import.twig:58 -#, fuzzy -#| msgid "" -#| "A compressed file's name must end in .[format].[compression]. " -#| "Example: .sql.zip" msgid "" "A compressed file's name must end in .[format].[compression]. Example: .sql.zip" msgstr "" -"Numele unui fișier comprimat trebuie să se termine în .[format]." -"[compresie]. Exemplu: .sql.zip" +"Numele unui fișier comprimat trebuie să se termine în " +".[format].[compresie]. Exemplu: .sql.zip" #: templates/display/import/import.twig:69 #: templates/display/import/import.twig:84 msgid "You may also drag and drop a file on any page." -msgstr "" +msgstr "De asemenea, poți trage și plasa un fișier în orice pagină." #: templates/display/import/import.twig:86 -#, fuzzy msgid "File uploads are not allowed on this server." -msgstr "Încărcările de fișiere nu sînt permise pe acest server." +msgstr "Încărcările de fișiere nu sunt permise pe acest server." #: templates/display/import/import.twig:97 #: templates/display/export/options_output_charset.twig:3 -#, fuzzy msgid "Character set of the file:" msgstr "Setul de caractere al fișierului:" #: templates/display/import/import.twig:124 -#, fuzzy -#| msgid "Partial import" msgid "Partial import:" -msgstr "Importare parțială" +msgstr "Import parțial:" #: templates/display/import/import.twig:129 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" +"Importul anterior a expirat, după retrimitere va continua din poziția %d." #: templates/display/import/import.twig:137 #, fuzzy @@ -16878,209 +14532,173 @@ msgstr "" "fișiere mari, deși poate strica tranzacții." #: templates/display/import/import.twig:144 -#, fuzzy -#| msgid "Number of records (queries) to skip from start" msgid "Skip this number of queries (for SQL) starting from the first one:" -msgstr "Number of records(queries) to skip from start" +msgstr "Sari peste acest număr de interogări (pentru SQL) începând cu prima:" #: templates/display/import/import.twig:161 -#, fuzzy -#| msgid "Options" msgid "Other options:" -msgstr "Opțiuni" +msgstr "Alte opțiuni:" #: templates/display/import/import.twig:174 #: templates/display/export/options_format.twig:2 -#, fuzzy -#| msgid "Transformation options" msgid "Format-specific options:" -msgstr "Opțiuni de transformare" +msgstr "Opțiuni specifice pentru format:" #: templates/display/import/import.twig:176 #: templates/display/export/options_format.twig:4 -#, fuzzy msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." msgstr "" -"Faceți scroll în jos pentru a completa opțiunile pentru formatul selectat și " -"ignorați opțiunile pentru alte formate." +"Derulează în jos pentru a completa opțiunile pentru formatul selectat și " +"ignoră opțiunile pentru alte formate." #: templates/display/import/import.twig:185 #: templates/display/export/options_format.twig:12 -#, fuzzy msgid "Encoding Conversion:" -msgstr "Versiunea clientului MySQL" +msgstr "Codarea conversiei:" #: templates/display/import/javascript.twig:12 -#, fuzzy msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -"Fișierul care este uploadat este probabil mai mare decât mărimea maximă " -"permisă sau acesta este un bug cunoscut în browser-ele bazate pe webkit (" +"Fișierul încărcat este probabil mai mare decât dimensiunea maximă permisă " +"sau aceasta este o eroare cunoscută în navigatoarele bazate pe webkit (" "Safari, Google Chrome, Arora etc.)." #: templates/display/import/javascript.twig:16 #, php-format msgid "%s of %s" -msgstr "" +msgstr "%s din %s" #: templates/display/import/javascript.twig:17 #, php-format msgid "%s/sec." -msgstr "" +msgstr "%s/sec." #: templates/display/import/javascript.twig:18 msgid "About %MIN min. %SEC sec. remaining." -msgstr "" +msgstr "Cam %MIN min. %SEC sec. rămase." #: templates/display/import/javascript.twig:19 msgid "About %SEC sec. remaining." -msgstr "" +msgstr "Cam %SEC sec. rămase." #: templates/display/import/javascript.twig:20 -#, fuzzy msgid "The file is being processed, please be patient." -msgstr "Fișierul este procesat, vă rugăm să aveți răbdare." +msgstr "Fișierul este procesat, te rog ai răbdare." #: templates/display/import/javascript.twig:36 -#, fuzzy -#| msgid "Format of imported file" msgid "Uploading your import file…" -msgstr "Formatul fișierului importat" +msgstr "Încarc fișierul tău de import…" #: templates/display/import/javascript.twig:161 -#, fuzzy msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -"Vă rugăm să aveți răbdare, fișierul este uploadat. Nu sunt disponibile " -"detalii despre upload." +"Te rog ai răbdare, fișierul este încărcat acum. Nu sunt disponibile detalii " +"despre încărcare." #: templates/server/plugins/section.twig:9 msgid "Plugin" -msgstr "" +msgstr "Modul" #: templates/server/plugins/section.twig:12 msgid "Author" -msgstr "" +msgstr "Autor" #: templates/server/plugins/section.twig:23 -#, fuzzy -#| msgid "Disabled" msgid "disabled" -msgstr "Dezactivat" +msgstr "dezactivat" #: templates/export/alias_add.twig:4 msgid "Define new aliases" -msgstr "" +msgstr "Definește aliasuri noi" #: templates/export/alias_add.twig:9 -#, fuzzy -#| msgid "Select Tables" msgid "Select database:" -msgstr "Selectează tabele" +msgstr "Selectează baza de date:" #: templates/export/alias_add.twig:15 -#, fuzzy -#| msgid "database name" msgid "New database name" -msgstr "nume bază de date" +msgstr "Nume bază de date nouă" #: templates/export/alias_add.twig:18 templates/export/alias_add.twig:32 #: templates/export/alias_add.twig:46 templates/console/display.twig:99 #: templates/columns_definitions/column_definitions_form.twig:32 -#, fuzzy msgid "Add" msgstr "Adaugă" #: templates/export/alias_add.twig:23 -#, fuzzy -#| msgid "Select Tables" msgid "Select table:" -msgstr "Selectează tabele" +msgstr "Selectează tabelul:" #: templates/export/alias_add.twig:29 -#, fuzzy -#| msgid "New table" msgid "New table name" -msgstr "Tabelă nouă" +msgstr "Nume tabel nou" #: templates/export/alias_add.twig:37 -#, fuzzy -#| msgid "Select a column." msgid "Select column:" -msgstr "Selectaţi o coloană." +msgstr "Selectează coloana:" #: templates/export/alias_add.twig:43 -#, fuzzy -#| msgid "Column names" msgid "New column name" -msgstr "Denumirile coloanelor" +msgstr "Nume coloană nouă" #: templates/privileges/add_user_fieldset.twig:2 -#, fuzzy -#| msgid "New" msgctxt "Create new user" msgid "New" msgstr "Nou" #: templates/display/export/options_quick_export.twig:2 #: templates/display/export/options_output.twig:2 -#, fuzzy msgid "Output:" -msgstr "Rezultat:" +msgstr "Ieșire:" #: templates/display/export/options_quick_export.twig:8 #: templates/display/export/options_output_save_dir.twig:5 -#, fuzzy, php-format -#| msgid "Save on server in the directory %s" +#, php-format msgid "Save on server in the directory %s" -msgstr "Salveaza pe server în directorul %s" +msgstr "Salvează pe server în directorul %s" #: templates/table/insert/continue_insertion_form.twig:18 -#, fuzzy, php-format -#| msgid "Restart insertion with %s rows" +#, php-format msgid "Continue insertion with %s rows" -msgstr "Repornește inserția cu %s rânduri" +msgstr "Continuă inserarea cu %s rânduri" #: templates/login/twofactor/key_configure.twig:3 msgid "" "Please connect your FIDO U2F device into your computer's USB port. Then " "confirm registration on the device." msgstr "" +"Te rog conectează dispozitivul FIDO U2F la portul USB al calculatorului. " +"Apoi confirmă înregistrarea pe dispozitiv." #: templates/server/databases/table_row.twig:13 -#, fuzzy, php-format -#| msgid "Jump to database" +#, php-format msgid "Jump to database '%s'" -msgstr "Sari la baza de date" +msgstr "Sari la baza de date „%s”" #: templates/server/databases/table_row.twig:61 -#, fuzzy, php-format +#, php-format msgid "Check privileges for database \"%s\"." -msgstr "Verifică privilegiile pentru baza de date \"%s\"." +msgstr "Verifică privilegiile pentru baza de date „%s”." #: templates/server/databases/table_row.twig:62 -#, fuzzy -#| msgid "Check Privileges" msgid "Check privileges" msgstr "Verifică privilegiile" #: templates/toggle_button.twig:3 -#, fuzzy msgid "Click to toggle" -msgstr "Faceţi click pentru a comuta" +msgstr "Dă clic pentru a comuta" #: templates/database/designer/aggregate_query_panel.twig:22 #: templates/database/designer/options_panel.twig:100 -#, fuzzy msgid "Aggregate" -msgstr "Agregat" +msgstr "Global" #: templates/database/designer/aggregate_query_panel.twig:30 #: templates/database/designer/where_query_panel.twig:30 @@ -17089,77 +14707,63 @@ msgstr "Agregat" #: templates/database/designer/having_query_panel.twig:61 #: templates/database/designer/options_panel.twig:106 #: templates/database/designer/options_panel.twig:170 -#, fuzzy msgid "Operator" -msgstr "Operand" +msgstr "Operator" #: templates/database/designer/side_menu.twig:13 #: templates/database/designer/side_menu.twig:19 -#, fuzzy -#| msgid "Show tables" msgid "Show/Hide tables list" -msgstr "Arată tabelele" +msgstr "Arată/ascunde lista de tabele" #: templates/database/designer/side_menu.twig:23 #: templates/database/designer/side_menu.twig:29 #: templates/database/designer/side_menu.twig:30 msgid "View in fullscreen" -msgstr "" +msgstr "Vezi în ecran complet" #: templates/database/designer/side_menu.twig:28 msgid "Exit fullscreen" -msgstr "" +msgstr "Ieși din ecran complet" #: templates/database/designer/side_menu.twig:42 #: templates/database/designer/side_menu.twig:46 -#, fuzzy -#| msgid "New name" msgid "New page" -msgstr "Nume nou" +msgstr "Pagină nouă" #: templates/database/designer/side_menu.twig:71 #: templates/database/designer/side_menu.twig:74 -#, fuzzy -#| msgid "Select Tables" msgid "Delete pages" -msgstr "Selectează tabele" +msgstr "Șterge paginile" #: templates/database/designer/side_menu.twig:78 #: templates/database/designer/side_menu.twig:81 #: templates/database/create_table.twig:7 -#, fuzzy msgid "Create table" -msgstr "Creare tabel" +msgstr "Creează tabel" #: templates/database/designer/side_menu.twig:85 #: templates/database/designer/side_menu.twig:88 #: templates/database/designer/new_relation_panel.twig:22 -#, fuzzy -#| msgid "Create relation" msgid "Create relationship" -msgstr "Creare relație" +msgstr "Creează relație" #: templates/database/designer/side_menu.twig:99 #: templates/database/designer/side_menu.twig:102 -#, fuzzy msgid "Reload" msgstr "Reîncarcă" #: templates/database/designer/side_menu.twig:108 #: templates/database/designer/side_menu.twig:111 -#, fuzzy msgid "Help" msgstr "Ajutor" #: templates/database/designer/side_menu.twig:116 #: templates/database/designer/side_menu.twig:119 -#, fuzzy msgid "Angular links" msgstr "Legături unghiulare" #: templates/database/designer/side_menu.twig:116 #: templates/database/designer/side_menu.twig:119 -#, fuzzy msgid "Direct links" msgstr "Legături directe" @@ -17172,109 +14776,85 @@ msgstr "Aliniere la grilă" #: templates/database/designer/side_menu.twig:129 #: templates/database/designer/side_menu.twig:135 msgid "Small/Big All" -msgstr "" +msgstr "Tot mic/mare" #: templates/database/designer/side_menu.twig:139 #: templates/database/designer/side_menu.twig:142 -#, fuzzy msgid "Toggle small/big" -msgstr "Comutare mare/mică" +msgstr "Comută pe mic/mare" #: templates/database/designer/side_menu.twig:146 #: templates/database/designer/side_menu.twig:149 -#, fuzzy -#| msgid "To select relation, click :" msgid "Toggle relationship lines" -msgstr "Pentru a alege relația, faceți clic:" +msgstr "Comută liniile de relație" #: templates/database/designer/side_menu.twig:154 #: templates/database/designer/side_menu.twig:157 -#, fuzzy -#| msgid "Export" msgid "Export schema" -msgstr "Exportă" +msgstr "Exportă schema" #: templates/database/designer/side_menu.twig:165 #: templates/database/designer/side_menu.twig:168 -#, fuzzy -#| msgid "Submit Query" msgid "Build Query" -msgstr "Trimite comanda" +msgstr "Construiește interogarea" #: templates/database/designer/side_menu.twig:173 #: templates/database/designer/side_menu.twig:177 -#, fuzzy msgid "Move Menu" -msgstr "Mutare meniu" +msgstr "Mută meniul" #: templates/database/designer/side_menu.twig:181 #: templates/database/designer/side_menu.twig:186 -#, fuzzy -#| msgid "Partial texts" msgid "Pin text" -msgstr "Texte parțiale" +msgstr "Prinde textul" #: templates/server/sub_page_header.twig:2 -#, fuzzy msgid "Server variables and settings" -msgstr "Variabile și configurări de server" +msgstr "Variabile și setări server" #: templates/server/sub_page_header.twig:2 -#, fuzzy -#| msgid "Storage Engines" msgid "Storage engines" msgstr "Motoare de stocare" #: templates/server/sub_page_header.twig:2 -#, fuzzy -#| msgid "Character Sets and Collations" msgid "Character sets and collations" -msgstr "Set de caractere și gestiunea acestora" +msgstr "Seturi de caractere și colaționări" #: templates/server/sub_page_header.twig:2 -#, fuzzy msgid "Databases statistics" -msgstr "Statisticile bazelor de date" +msgstr "Statistici baze de date" #: templates/database/designer/page_selector.twig:2 -#, fuzzy -#| msgid "Select Tables" msgid "Select page" -msgstr "Selectează tabele" +msgstr "Selectează pagina" #: templates/table/search/rows_zoom.twig:12 -#, fuzzy msgid "Additional search criteria" -msgstr "Criterii de căutare suplimentare" +msgstr "Criteriu de căutare suplimentar" #: templates/database/search/selection_form.twig:5 -#, fuzzy msgid "Search in database" msgstr "Caută în baza de date" #: templates/database/search/selection_form.twig:8 -#, fuzzy msgid "Words or values to search for (wildcard: \"%\"):" -msgstr "Cuvinte sau valori de căutat (metacaracter: \"%\"):" +msgstr "Cuvinte sau valori de căutat (metacaracter: „%”):" #: templates/database/search/selection_form.twig:15 #: templates/table/search/search_and_replace.twig:1 -#, fuzzy msgid "Find:" msgstr "Găsește:" #: templates/database/search/selection_form.twig:29 -#, fuzzy msgid "Inside tables:" msgstr "În interiorul tabelelor:" #: templates/database/search/selection_form.twig:51 -#, fuzzy msgid "Inside column:" -msgstr "In interiorul coloanei::" +msgstr "În interiorul coloanei:" #: templates/database/structure/body_for_table_summary.twig:6 -#, fuzzy, php-format +#, php-format msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s tabel" @@ -17282,840 +14862,658 @@ msgstr[1] "%s tabele" msgstr[2] "%s de tabele" #: templates/database/structure/body_for_table_summary.twig:17 -#, fuzzy msgid "Sum" -msgstr "Sumă" +msgstr "Total" #: templates/display/export/options_rows.twig:2 -#, fuzzy msgid "Rows:" msgstr "Rânduri:" #: templates/display/export/options_rows.twig:7 -#, fuzzy msgid "Dump some row(s)" -msgstr "Șterge câteva rânduri" +msgstr "Dump câteva rânduri" #: templates/display/export/options_rows.twig:10 #: templates/start_and_number_of_rows_panel.twig:10 #: templates/display/results/additional_fields.twig:6 -#, fuzzy msgid "Number of rows:" msgstr "Număr de rânduri:" #: templates/display/export/options_rows.twig:23 -#, fuzzy msgid "Row to begin at:" -msgstr "Rândul de la care se începe:" +msgstr "Rând pentru a începe la:" #: templates/display/export/options_rows.twig:32 -#, fuzzy msgid "Dump all rows" -msgstr "Șterge toate rândurile" +msgstr "Dump la toate rândurile" #: templates/view_create.twig:13 #: templates/table/structure/display_structure.twig:137 -#, fuzzy -#| msgid "Print view" msgid "Edit view" -msgstr "Vizualizare imprimare" +msgstr "Editează vizualizarea" #: templates/view_create.twig:65 -#, fuzzy msgid "VIEW name" -msgstr "Denumire VIZIUNE" +msgstr "Nume VIZUALIZARE" #: templates/view_create.twig:79 -#, fuzzy msgid "Column names" -msgstr "Denumirile coloanelor" +msgstr "Nume coloane" #: templates/server/databases/index.twig:24 -#, fuzzy msgid "No databases" -msgstr "Nu sînt baze de date" +msgstr "Nicio bază de date" #: templates/table/structure/row_stats_table.twig:2 -#, fuzzy -#| msgid "Row Statistics" msgid "Row statistics" -msgstr "Statisticile rândului" +msgstr "Statistici rânduri" #: templates/table/structure/row_stats_table.twig:8 msgid "static" -msgstr "" +msgstr "static" #: templates/table/structure/row_stats_table.twig:10 -#, fuzzy msgid "dynamic" msgstr "dinamic" #: templates/table/structure/row_stats_table.twig:21 -#, fuzzy msgid "partitioned" msgstr "partiționat" #: templates/table/structure/row_stats_table.twig:50 -#, fuzzy msgid "Row length" -msgstr "Lungime linie" +msgstr "Lungime rând" #: templates/table/structure/row_stats_table.twig:62 -#, fuzzy msgid "Row size" -msgstr "Mărime rând" +msgstr "Dimensiune rând" #: templates/table/structure/row_stats_table.twig:69 msgid "Next autoindex" -msgstr "" +msgstr "Următorul index automat" #: templates/table/structure/row_stats_table.twig:76 #: templates/database/structure/table_header.twig:53 -#, fuzzy msgid "Creation" msgstr "Creare" #: templates/table/structure/row_stats_table.twig:83 #: templates/database/structure/table_header.twig:58 -#, fuzzy msgid "Last update" msgstr "Ultima actualizare" #: templates/table/structure/row_stats_table.twig:90 #: templates/database/structure/table_header.twig:63 -#, fuzzy msgid "Last check" -msgstr "Ultima verficare" +msgstr "Ultima verificare" #: templates/privileges/resource_limits.twig:2 -#, fuzzy msgid "Resource limits" -msgstr "Limitare de resurse" +msgstr "Limitele resursă" #: templates/privileges/resource_limits.twig:5 -#, fuzzy msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "" -"Observație: Prin stabilirea acestor opțiuni la 0 (zero) se elimină " -"restricția." +msgstr "Notă: Setarea acestor opțiuni la 0 (zero) înlătură limita." #: templates/display/export/options_output_format.twig:3 -#, fuzzy -#| msgid "File name template" msgid "File name template:" -msgstr "Șablon nume fișier" +msgstr "Șablon nume fișier:" #: templates/display/export/options_output_format.twig:11 -#, fuzzy msgid "use this for future exports" -msgstr "folosiți pentru viitoare exportări" +msgstr "folosește asta exporturi viitoare" #: templates/database/designer/database_tables.twig:31 -#, fuzzy -#| msgid "Add columns" msgid "Show/hide columns" -msgstr "Adaugă coloane" +msgstr "Arată/ascunde coloane" #: templates/database/designer/database_tables.twig:39 -#, fuzzy -#| msgid "Database for user" msgid "See table structure" -msgstr "Bază de date pentru utilizatorul" +msgstr "Vezi structura tabelului" #: templates/table/tracking/activate_deactivate.twig:7 #, php-format msgid "Activate tracking for %s" -msgstr "" +msgstr "Activează urmărirea pentru %s" #: templates/table/tracking/activate_deactivate.twig:9 -#, fuzzy msgid "Activate now" msgstr "Activează acum" #: templates/table/tracking/activate_deactivate.twig:11 -#, fuzzy, php-format +#, php-format msgid "Deactivate tracking for %s" -msgstr "Șterge datele urmărite din acest tabel" +msgstr "Dezactivează urmărirea pentru %s" #: templates/table/tracking/activate_deactivate.twig:13 -#, fuzzy msgid "Deactivate now" msgstr "Dezactivează acum" #: templates/table/structure/partition_definition_form.twig:6 #: templates/table/structure/display_partitions.twig:141 -#, fuzzy -#| msgid "Remove partitioning" msgid "Edit partitioning" -msgstr "Elimină partiționarea" +msgstr "Editează partiționarea" #: templates/table/structure/display_structure.twig:191 #: templates/table/structure/display_partitions.twig:4 -#, fuzzy -#| msgid "Partition %s" msgid "Partitions" -msgstr "Partiția %s" +msgstr "Partiții" #: templates/encoding/kanji_encoding_form.twig:6 -#, fuzzy -#| msgid "None" msgctxt "None encoding conversion" msgid "None" -msgstr "Nici unul(a)" +msgstr "Niciuna" #: templates/encoding/kanji_encoding_form.twig:17 msgid "Convert to Kana" msgstr "" #: templates/display/export/template_options.twig:1 -#, fuzzy -#| msgid "Select a table" msgid "Select a template" -msgstr "Selectaţi un tabel" +msgstr "Selectează un șablon" #: templates/database/designer/rename_to_panel.twig:22 #: templates/database/designer/options_panel.twig:85 -#, fuzzy msgid "Rename to" -msgstr "Redenumire tabel la" +msgstr "Redenumește în" #: templates/database/designer/rename_to_panel.twig:30 #: templates/database/designer/options_panel.twig:91 -#, fuzzy msgid "New name" msgstr "Nume nou" #: templates/database/structure/table_header.twig:27 -#, fuzzy -#| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "" "May be approximate. Click on the number to get the exact count. See " "[doc@faq3-11]FAQ 3.11[/doc]." -msgstr "Poate fi aproximativ. Vezi [doc@faq3-11]FAQ 3.11[/doc]" +msgstr "" +"Poate fi aproximativ. Dă clic pe număr pentru a obține valoarea exactă. Vezi " +"[doc@faq3-11]Întrebări frecvente 3.11[/doc]." #: templates/database/structure/table_header.twig:38 #: templates/table/index_form.twig:118 -#, fuzzy msgid "Size" msgstr "Dimensiune" #: templates/privileges/privileges_summary.twig:20 -#, fuzzy msgid "Column-specific privileges" -msgstr "Drepturi specifice coloanei" +msgstr "Privilegii specifice coloanelor" #: templates/privileges/add_privileges_database.twig:1 -#, fuzzy -#| msgid "Add privileges on the following database" msgid "Add privileges on the following database(s):" -msgstr "Adaugă drepturi la baza de date următoare" +msgstr "Adaugă privilegii pentru următoarele baze de date:" #: templates/privileges/add_privileges_database.twig:14 -#, fuzzy msgid "Wildcards % and _ should be escaped with a \\ to use them literally." -msgstr "Metacaracterele _ și % trebuiesc însoțite de \\ pentru a le aplica." +msgstr "" +"Metacaracterele % și _ trebuie să fie escapate cu un \\ pentru a fi folosite " +"cum trebuie." #: templates/database/structure/favorite_anchor.twig:4 -#, fuzzy -#| msgid "Add a new server" msgid "Add to Favorites" -msgstr "Adaugă un server nou" +msgstr "Adaugă la favorite" #: templates/columns_definitions/column_default.twig:3 -#, fuzzy -#| msgid "None" msgctxt "for default" msgid "None" -msgstr "Nici unul(a)" +msgstr "Niciuna" #: templates/columns_definitions/column_default.twig:5 -#, fuzzy msgid "As defined:" -msgstr "Conform definiției:" +msgstr "Așa cum este definit:" #: templates/display/export/option_header.twig:5 -#, fuzzy msgid "Exporting databases from the current server" -msgstr "Se exportă bazele de date de pe server-ul curent" +msgstr "Export bazele de date de pe serverul curent" #: templates/display/export/option_header.twig:7 -#, fuzzy, php-format +#, php-format msgid "Exporting tables from \"%s\" database" -msgstr "Se exportă tabelele din baza de date \"%s\"" +msgstr "Export tabelele din baza de date „%s”" #: templates/display/export/option_header.twig:9 -#, fuzzy, php-format +#, php-format msgid "Exporting rows from \"%s\" table" -msgstr "Se exportă rândurile din tabela \"%s\"" +msgstr "Export rândurile din tabelul „%s”" #: templates/theme_preview.twig:11 -#, fuzzy msgid "No preview available." -msgstr "Nici o previzualizare disponibilă." +msgstr "Nicio previzualizare disponibilă." #: templates/theme_preview.twig:13 -#, fuzzy -#| msgid "take it" msgid "Take it" -msgstr "alege" +msgstr "Ia-l" #: templates/columns_definitions/column_virtuality.twig:29 #: templates/table/structure/display_partitions.twig:26 -#, fuzzy -#| msgid "Compression" msgid "Expression" -msgstr "Compresie" +msgstr "Expresie" #: templates/prefs_autoload.twig:7 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" msgstr "" +"Navigatorul tău are configurarea phpMyAdmin pentru acest domeniu. Vrei s-o " +"imporți pentru sesiunea curentă?" #: templates/prefs_autoload.twig:13 -#, fuzzy -#| msgid "Delete tracking" msgid "Delete settings" -msgstr "Se șterg datele monitorizare" +msgstr "Șterge setările" #: templates/database/designer/delete_relation_panel.twig:21 -#, fuzzy -#| msgid "Delete relation" msgid "Delete relationship" msgstr "Șterge relația" #: templates/database/structure/show_create.twig:2 -#, fuzzy -#| msgid "Show SQL queries" msgid "Showing create queries" -msgstr "Afișează interogările SQL" +msgstr "Arăt creează interogări" #: templates/login/twofactor.twig:5 msgid "Verify" -msgstr "" +msgstr "Verifică" #: templates/table/search/replace_preview.twig:13 -#, fuzzy msgid "Find and replace - preview" -msgstr "Caută şi înlocuieşte - previzualizare" +msgstr "Caută și înlocuiește - previzualizare" #: templates/table/search/replace_preview.twig:17 #: templates/console/display.twig:64 templates/console/display.twig:84 -#, fuzzy msgid "Count" -msgstr "Numără" +msgstr "Număr" #: templates/table/search/replace_preview.twig:18 -#, fuzzy msgid "Original string" -msgstr "Textul original" +msgstr "Șir original" #: templates/table/search/replace_preview.twig:19 -#, fuzzy msgid "Replaced string" -msgstr "Text înlocuit" +msgstr "Șir înlocuit" #: templates/table/search/replace_preview.twig:37 -#, fuzzy msgid "Replace" -msgstr "Înlocuire" +msgstr "Înlocuiește" #: templates/login/twofactor/application.twig:2 #: templates/login/twofactor/application_configure.twig:9 -#, fuzzy -#| msgid "Authentication" msgid "Authentication code:" -msgstr "Autentificare" +msgstr "Cod de autentificare:" #: templates/login/twofactor/application.twig:4 msgid "" "Open the two-factor authentication app on your device to view your " "authentication code and verify your identity." msgstr "" +"Deschide aplicația autentificare pe două niveluri pe dispozitivul tău pentru " +"a-ți vedea codul de autentificare și pentru a-ți verifica identitatea." #: templates/table/tracking/create_version.twig:11 -#, fuzzy, php-format +#, php-format msgid "Create version %1$s of %2$s" -msgstr "Creare relație" +msgstr "Creează versiunea %1$s din %2$s" #: templates/table/tracking/create_version.twig:16 -#, fuzzy, php-format -#| msgid "Create version" +#, php-format msgid "Create version %1$s" -msgstr "Creează versiune" +msgstr "Creează versiunea %1$s" #: templates/table/tracking/create_version.twig:20 msgid "Track these data definition statements:" -msgstr "" +msgstr "Urmărește aceste declarații de definiție a datelor:" #: templates/table/tracking/create_version.twig:59 msgid "Track these data manipulation statements:" -msgstr "" +msgstr "Urmărește aceste declarații de manipulare a datelor:" #: templates/table/tracking/create_version.twig:76 -#, fuzzy msgid "Create version" -msgstr "Creează versiune" +msgstr "Creează versiunea" #: templates/table/structure/optional_action_links.twig:6 -#, fuzzy msgid "Propose table structure" -msgstr "Propune structura de tabele" +msgstr "Propune structura de tabel" #: templates/table/structure/optional_action_links.twig:15 #: templates/database/tracking/untracked_tables.twig:28 #: templates/database/tracking/untracked_tables.twig:40 -#, fuzzy msgid "Track table" -msgstr "Monitorizează tabel" +msgstr "Urmărește tabelul" #: templates/table/structure/optional_action_links.twig:22 msgid "Normalize" -msgstr "" +msgstr "Normalizează" #: templates/table/structure/optional_action_links.twig:28 -#, fuzzy msgid "Track view" -msgstr "Vedere de monitorizare" +msgstr "Urmărește vizualizarea" #: templates/columns_definitions/column_name.twig:4 -#, fuzzy, php-format -#| msgid "Select referenced key" +#, php-format msgid "Referenced by %s." -msgstr "Alegere cheie referențiată" +msgstr "Face referire la %s." #: templates/columns_definitions/column_name.twig:12 -#, fuzzy -#| msgid "Select Foreign Key" msgid "Is a foreign key." -msgstr "Alegeți cheia străină" +msgstr "Este o cheie străină." #: templates/columns_definitions/column_name.twig:40 -#, fuzzy -#| msgid "Remove chart" msgid "Pick from Central Columns" -msgstr "Elimină graficul" +msgstr "Alege din coloanele centrale" #: templates/columns_definitions/column_length.twig:9 msgid "Edit ENUM/SET values" -msgstr "" +msgstr "Editează valorile ENUM/SET" #: templates/database/multi_table_query/form.twig:1 -#, fuzzy msgid "Query window" -msgstr "Fereastra de comandă" +msgstr "Fereastră interogare" #: templates/database/multi_table_query/form.twig:18 #: templates/database/multi_table_query/form.twig:106 -#, fuzzy -#| msgid "Select Tables" msgid "select table" -msgstr "Selectează tabele" +msgstr "selectează tabelul" #: templates/database/multi_table_query/form.twig:25 #: templates/database/multi_table_query/form.twig:114 -#, fuzzy -#| msgid "Select a column." msgid "select column" -msgstr "Selectaţi o coloană." +msgstr "selectează coloana" #: templates/database/multi_table_query/form.twig:31 -#, fuzzy -#| msgid "Tables" msgid "Table alias" -msgstr "Tabele" +msgstr "Alias tabel" #: templates/database/multi_table_query/form.twig:32 -#, fuzzy -#| msgid "Column names" msgid "Column alias" -msgstr "Denumirile coloanelor" +msgstr "Alias coloană" #: templates/database/multi_table_query/form.twig:35 -#, fuzzy -#| msgid "Use this column to label each point" msgid "Use this column in criteria" -msgstr "Foloseşte această coloana pentru a eticheta fiecare punct" +msgstr "Folosește această coloană în criteriu" #: templates/database/multi_table_query/form.twig:38 -#, fuzzy -#| msgid "Criteria:" msgid "criteria" -msgstr "Criteriu:" +msgstr "criteriu" #: templates/database/multi_table_query/form.twig:52 -#, fuzzy -#| msgid "Add %s" msgid "Add as" -msgstr "Adăugare %s" +msgstr "Adaugă ca" #: templates/database/multi_table_query/form.twig:97 -#, fuzzy -#| msgid "Add/Delete Field Columns" msgid "Another column" -msgstr "Adaugă/șterge coloane" +msgstr "O altă coloană" #: templates/database/multi_table_query/form.twig:125 msgid "Enter criteria as free text" -msgstr "" +msgstr "Introdu criteriul ca text disponibil" #: templates/database/multi_table_query/form.twig:133 -#, fuzzy -#| msgid "Remove chart" msgid "Remove this column" -msgstr "Elimină graficul" +msgstr "Înlătură această coloană" #: templates/database/multi_table_query/form.twig:143 #: templates/table/relation/foreign_key_row.twig:91 -#, fuzzy -#| msgid "Add %s field(s)" msgid "+ Add column" -msgstr "Adaugă %s câmp(uri)" +msgstr "+ Adaugă coloană" #: templates/database/multi_table_query/form.twig:160 -#, fuzzy -#| msgid "Update Query" msgid "Update query" -msgstr "Reînnoire comandă" +msgstr "Actualizează interogarea" #: templates/table/tracking/report_table.twig:4 #: templates/table/tracking/structure_snapshot_columns.twig:5 msgctxt "Number" msgid "#" -msgstr "" +msgstr "#" #: templates/table/tracking/report_table.twig:5 -#, fuzzy msgid "Date" msgstr "Dată" #: templates/table/tracking/report_table.twig:6 -#, fuzzy msgid "Username" -msgstr "Nume utilizator:" +msgstr "Nume utilizator" #: templates/export/alias_item.twig:8 -#, fuzzy msgid "Remove" -msgstr "Server Web" +msgstr "Înlătură" #: templates/table/browse_foreigners/column_element.twig:4 -#, fuzzy msgid "Use this value" msgstr "Folosește această valoare" #: templates/table/search/options_zoom.twig:6 -#, fuzzy msgid "Use this column to label each point" -msgstr "Foloseşte această coloana pentru a eticheta fiecare punct" +msgstr "Folosește această coloana pentru a eticheta fiecare punct" #: templates/table/search/options_zoom.twig:32 -#, fuzzy msgid "Maximum rows to plot" -msgstr "Numărul maxim de afişat" +msgstr "Număr maxim de rânduri de trasat" #: templates/console/display.twig:7 -#, fuzzy msgid "History" msgstr "Istoric" #: templates/console/display.twig:11 templates/console/display.twig:99 -#, fuzzy msgid "Bookmarks" msgstr "Semne de carte" #: templates/console/display.twig:20 -#, fuzzy msgid "Press Ctrl+Enter to execute query" -msgstr "Apăsaţi Ctrl+Enter pentru a executa interogarea" +msgstr "Apasă Ctrl+Enter pentru a executa interogarea" #: templates/console/display.twig:23 -#, fuzzy -#| msgid "Press Ctrl+Enter to execute query" msgid "Press Enter to execute query" -msgstr "Apăsaţi Ctrl+Enter pentru a executa interogarea" +msgstr "Apasă Enter pentru a executa interogarea" #: templates/console/display.twig:31 templates/console/display.twig:84 #: templates/console/display.twig:175 templates/console/bookmark_content.twig:7 -#, fuzzy msgid "Collapse" msgstr "Restrânge" #: templates/console/display.twig:31 templates/console/display.twig:84 #: templates/console/display.twig:175 templates/console/bookmark_content.twig:7 -#, fuzzy msgid "Expand" msgstr "Extinde" #: templates/console/display.twig:31 templates/console/display.twig:175 #: templates/console/bookmark_content.twig:7 -#, fuzzy msgid "Requery" msgstr "Reinterogare" #: templates/console/display.twig:31 templates/console/display.twig:175 -#, fuzzy msgid "Explain" msgstr "Explică" #: templates/console/display.twig:40 templates/console/display.twig:184 -#, fuzzy msgid "Bookmark" msgstr "Semn de carte" #: templates/console/display.twig:40 templates/console/display.twig:184 -#, fuzzy msgid "Query failed" -msgstr "Interogare a eşuat" +msgstr "Interogare eșuată" #: templates/console/display.twig:42 templates/console/display.twig:184 -#, fuzzy msgid "Queried time" -msgstr "Durata de execuție a interogării" +msgstr "Timp de interogare" #: templates/console/display.twig:47 -#, fuzzy msgid "During current session" msgstr "În timpul sesiunii curente" #: templates/console/display.twig:64 -#, fuzzy -#| msgid "Ascending" msgid "ascending" -msgstr "Crescătoare" +msgstr "crescător" #: templates/console/display.twig:64 -#, fuzzy -#| msgid "Descending" msgid "descending" -msgstr "Descrescător" +msgstr "descrescător" #: templates/console/display.twig:64 -#, fuzzy msgid "Order:" msgstr "Ordine:" #: templates/console/display.twig:64 -#, fuzzy -#| msgid "Execute every" msgid "Execution order" -msgstr "Execută fiecare" +msgstr "Ordine de execuție" #: templates/console/display.twig:64 templates/console/display.twig:84 msgid "Time taken" -msgstr "" +msgstr "Timp luat" #: templates/console/display.twig:64 -#, fuzzy msgid "Order by:" msgstr "Ordonează după:" #: templates/console/display.twig:64 -#, fuzzy -#| msgid "SQL queries" msgid "Ungroup queries" -msgstr "Interogări SQL" +msgstr "Degrupează interogările" #: templates/console/display.twig:84 -#, fuzzy -#| msgid "Show color" msgid "Show trace" -msgstr "Arată culoarea" +msgstr "Arată urmărirea" #: templates/console/display.twig:84 -#, fuzzy -#| msgid "Hide Panel" msgid "Hide trace" -msgstr "Ascunde panou" +msgstr "Ascunde urmărirea" #: templates/console/display.twig:112 -#, fuzzy msgid "Add bookmark" msgstr "Adaugă semn de carte" #: templates/console/display.twig:121 -#, fuzzy msgid "Label" msgstr "Etichetă" #: templates/console/display.twig:124 -#, fuzzy msgid "Target database" -msgstr "Baza de date țintă" +msgstr "Bază de date de destinație" #: templates/console/display.twig:127 -#, fuzzy msgid "Share this bookmark" -msgstr "Partajaţi acest semn de carte" +msgstr "Partajează acest semn de carte" #: templates/console/display.twig:140 -#, fuzzy msgid "Set default" -msgstr "Setaţi ca implicit" +msgstr "Setează la implicit" #: templates/console/display.twig:162 -#, fuzzy msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -"Execută interogări pe Enter şi inserează o linie nouă cu Shift + Enter. " -"Pentru a face asta permanent, vezi setări." +"Execută interogări apăsând pe Enter și inserează o linie nouă cu Shift + " +"Enter. Pentru a face asta permanent, vizualizează setările." #: templates/columns_definitions/partitions.twig:17 -#, fuzzy -#| msgid "partitioned" msgid "Partition by:" -msgstr "partiționat" +msgstr "Partiție de:" #: templates/columns_definitions/partitions.twig:32 #: templates/columns_definitions/partitions.twig:60 -#, fuzzy -#| msgid "Values for column %s" msgid "Expression or column list" -msgstr "Valori pentru coloana %s" +msgstr "Expresie sau listă de coloane" #: templates/columns_definitions/partitions.twig:37 -#, fuzzy -#| msgid "Partition %s" msgid "Partitions:" -msgstr "Partiția %s" +msgstr "Partiții:" #: templates/columns_definitions/partitions.twig:45 -#, fuzzy -#| msgid "partitioned" msgid "Subpartition by:" -msgstr "partiționat" +msgstr "Sub-partiție de:" #: templates/columns_definitions/partitions.twig:65 -#, fuzzy -#| msgid "partitioned" msgid "Subpartitions:" -msgstr "partiționat" +msgstr "Sub-partiții:" #: templates/columns_definitions/partitions.twig:76 #: templates/table/structure/display_partitions.twig:24 -#, fuzzy -#| msgid "Partition %s" msgid "Partition" -msgstr "Partiția %s" +msgstr "Partiție" #: templates/columns_definitions/partitions.twig:78 -#, fuzzy -#| msgid "Value" msgid "Values" -msgstr "Valoare" +msgstr "Valori" #: templates/columns_definitions/partitions.twig:82 -#, fuzzy -#| msgid "partitioned" msgid "Subpartition" -msgstr "partiționat" +msgstr "Sub-partiție" #: templates/columns_definitions/partitions.twig:84 -#, fuzzy -#| msgid "Engines" msgid "Engine" -msgstr "Motoare" +msgstr "Motor" #: templates/columns_definitions/partitions.twig:86 -#, fuzzy -#| msgid "Data home directory" msgid "Data directory" -msgstr "Directorul de bază pentru date" +msgstr "Director de date" #: templates/columns_definitions/partitions.twig:87 -#, fuzzy -#| msgid "Save directory" msgid "Index directory" -msgstr "Directorul de salvări" +msgstr "Director de indexuri" #: templates/columns_definitions/partitions.twig:88 -#, fuzzy -#| msgid "Matched rows:" msgid "Max rows" -msgstr "Rânduri afectate:" +msgstr "Număr maxim de rânduri" #: templates/columns_definitions/partitions.twig:89 -#, fuzzy -#| msgid "rows" msgid "Min rows" -msgstr "Navigare" +msgstr "Număr minim de rânduri" #: templates/columns_definitions/partitions.twig:90 -#, fuzzy -#| msgid "Table Search" msgid "Table space" -msgstr "Caută în tabelă" +msgstr "Spațiu tabel" #: templates/columns_definitions/partitions.twig:91 -#, fuzzy -#| msgid "Users" msgid "Node group" -msgstr "Utilizatori" +msgstr "Grup de noduri" #: templates/table/relation/foreign_key_row.twig:15 -#, fuzzy, php-format -#| msgid "Foreign key constraint" +#, php-format msgid "Foreign key constraint %s has been dropped" -msgstr "Constrîngere de cheie străină" +msgstr "Constrângerea cheii străine %s a fost eliminată" #: templates/table/relation/foreign_key_row.twig:39 -#, fuzzy msgid "Constraint name" -msgstr "Denumire constrîngere" +msgstr "Nume constrângere" #: templates/table/structure/check_all_table_column.twig:76 #: templates/table/structure/actions_in_table_structure.twig:131 -#, fuzzy -#| msgid "CHAR textarea columns" msgid "Add to central columns" -msgstr "coloane textarea CHAR" +msgstr "Adaugă în coloanele centrale" #: templates/table/structure/check_all_table_column.twig:83 #: templates/table/structure/actions_in_table_structure.twig:127 -#, fuzzy -#| msgid "Remove chart" msgid "Remove from central columns" -msgstr "Elimină graficul" +msgstr "Înlătură din coloanele centrale" #: templates/server/databases/databases_footer.twig:65 -#, fuzzy msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" -"Notă: Activarea statisticilor pentru baza de date poate cauza creșterea " -"traficului între MySQL și serverul Web." +"Notă: Activarea statisticilor bazei de date aici poate cauza un trafic " +"intens între serverul web și serverul MySQL." #: templates/server/databases/databases_footer.twig:68 #: templates/server/databases/databases_footer.twig:71 -#, fuzzy -#| msgid "Enable Statistics" msgid "Enable statistics" msgstr "Activează statisticile" #: templates/display/export/selection.twig:3 -#, fuzzy -#| msgid "Databases" msgid "Databases:" -msgstr "Baze de date" +msgstr "Baze de date:" #: templates/database/structure/tracking_icon.twig:3 -#, fuzzy msgid "Tracking is active." -msgstr "Monitorizarea este activată." +msgstr "Urmărirea este activă." #: templates/database/structure/tracking_icon.twig:5 -#, fuzzy msgid "Tracking is not active." -msgstr "Monitorizarea nu este activată." +msgstr "Urmărirea nu este activă." #: templates/database/designer/where_query_panel.twig:59 #: templates/database/designer/having_query_panel.twig:90 #: templates/database/designer/options_panel.twig:63 #: templates/database/designer/options_panel.twig:229 -#, fuzzy msgid "Except" msgstr "Cu excepția" @@ -18123,60 +15521,50 @@ msgstr "Cu excepția" #: templates/database/designer/having_query_panel.twig:102 #: templates/database/designer/options_panel.twig:75 #: templates/database/designer/options_panel.twig:241 -#, fuzzy msgid "subquery" -msgstr "subinterogare" +msgstr "sub-interogare" #: templates/columns_definitions/move_column.twig:7 msgid "first" -msgstr "" +msgstr "primul" #: templates/columns_definitions/move_column.twig:12 #: templates/table/structure/add_column.twig:19 -#, fuzzy, php-format -#| msgid "After %s" +#, php-format msgid "after %s" -msgstr "După %s" +msgstr "după %s" #: templates/table/chart/tbl_chart.twig:15 -#, fuzzy msgctxt "Chart type" msgid "Bar" msgstr "Bară" #: templates/table/chart/tbl_chart.twig:19 -#, fuzzy msgctxt "Chart type" msgid "Column" msgstr "Coloană" #: templates/table/chart/tbl_chart.twig:23 -#, fuzzy msgctxt "Chart type" msgid "Line" msgstr "Linie" #: templates/table/chart/tbl_chart.twig:27 -#, fuzzy -#| msgid "Engines" msgctxt "Chart type" msgid "Spline" -msgstr "Motoare" +msgstr "Butuc" #: templates/table/chart/tbl_chart.twig:31 -#, fuzzy msgctxt "Chart type" msgid "Area" -msgstr "Suprafață" +msgstr "Zonă" #: templates/table/chart/tbl_chart.twig:35 -#, fuzzy msgctxt "Chart type" msgid "Pie" msgstr "Diagramă circulară" #: templates/table/chart/tbl_chart.twig:39 -#, fuzzy msgctxt "Chart type" msgid "Timeline" msgstr "Cronologie" @@ -18187,72 +15575,60 @@ msgid "Scatter" msgstr "" #: templates/table/chart/tbl_chart.twig:48 -#, fuzzy -#| msgid "Packed" msgid "Stacked" -msgstr "Împachetat" +msgstr "Stivuit" #: templates/table/chart/tbl_chart.twig:51 -#, fuzzy -#| msgid "Chart title" msgid "Chart title:" -msgstr "Titlul diagramei" +msgstr "Titlu diagramă:" #: templates/table/chart/tbl_chart.twig:56 -#, fuzzy msgid "X-Axis:" msgstr "Axa X:" #: templates/table/chart/tbl_chart.twig:71 -#, fuzzy msgid "Series:" -msgstr "Serii:" +msgstr "Serie:" #: templates/table/chart/tbl_chart.twig:102 msgid "X-Axis label:" -msgstr "" +msgstr "Etichetă axă X:" #: templates/table/chart/tbl_chart.twig:104 -#, fuzzy msgid "X Values" msgstr "Valori X" #: templates/table/chart/tbl_chart.twig:107 msgid "Y-Axis label:" -msgstr "" +msgstr "Etichetă axă Y:" #: templates/table/chart/tbl_chart.twig:109 -#, fuzzy msgid "Y Values" msgstr "Valori Y" #: templates/table/chart/tbl_chart.twig:115 msgid "Series names are in a column" -msgstr "" +msgstr "Numele de serii sunt într-o coloană" #: templates/table/chart/tbl_chart.twig:118 -#, fuzzy -#| msgid "Inside column:" msgid "Series column:" -msgstr "In interiorul coloanei::" +msgstr "Coloană serii:" #: templates/table/chart/tbl_chart.twig:132 -#, fuzzy -#| msgid "Values for column %s" msgid "Value Column:" -msgstr "Valori pentru coloana %s" +msgstr "Coloană de valori:" #: templates/table/chart/tbl_chart.twig:153 -#, fuzzy -#| msgid "Save as file" msgid "Save chart as image" -msgstr "Salvează ca fișier" +msgstr "Salvează diagrama ca imagine" #: templates/login/twofactor/application_configure.twig:3 msgid "" "Please scan following QR code into the two-factor authentication app on your " "device and enter authentication code it generates." msgstr "" +"Te rog scanează următorul cod QR în aplicația autentificare pe două niveluri " +"pe dispozitivul tău și introdu codul de autentificare pe care îl generează." #: templates/login/header.twig:12 msgid "" @@ -18262,256 +15638,202 @@ msgid "" msgstr "" #: templates/database/designer/query_details.twig:6 -#, fuzzy -#| msgid "Table options" msgid "Active options" -msgstr "Opțiuni tabel" +msgstr "Opțiuni active" #: templates/columns_definitions/column_definitions_form.twig:23 -#, fuzzy msgid "Table name" -msgstr "Denumire tabel" +msgstr "Nume tabel" #: templates/columns_definitions/column_definitions_form.twig:40 -#, fuzzy -#| msgid "Column names" msgid "column(s)" -msgstr "Denumirile coloanelor" +msgstr "coloană(e)" #: templates/columns_definitions/column_definitions_form.twig:74 -#, fuzzy -#| msgid "Collation" msgid "Collation:" -msgstr "Interclasare" +msgstr "Colaționare:" #: templates/columns_definitions/column_definitions_form.twig:77 -#, fuzzy -#| msgid "Storage Engine" msgid "Storage Engine:" -msgstr "Motor de stocare" +msgstr "Motor de stocare:" #: templates/columns_definitions/column_definitions_form.twig:82 -#, fuzzy -#| msgid "Connections" msgid "Connection:" -msgstr "Conexiuni" +msgstr "Conexiune:" #: templates/columns_definitions/column_definitions_form.twig:128 -#, fuzzy -#| msgid "PARTITION definition" msgid "PARTITION definition:" -msgstr "Definiție PARTIȚIE" +msgstr "Definiție PARTIȚIE:" #: templates/start_and_number_of_rows_panel.twig:3 -#, fuzzy -#| msgid "Start" msgid "Start row:" -msgstr "Dum" +msgstr "Rând de început:" #: templates/prefs_twofactor.twig:3 -#, fuzzy -#| msgid "Authentication settings." msgid "Two-factor authentication status" -msgstr "Setările autentificării." +msgstr "Stare autentificare pe două niveluri" #: templates/prefs_twofactor.twig:9 msgid "" "Two-factor authentication is not available, please install optional " "dependencies to enable authentication backends." msgstr "" +"Autentificarea pe două niveluri nu este disponibilă, te rog instalează " +"dependințe opționale pentru a activa părțile administrative de autentificare." #: templates/prefs_twofactor.twig:10 msgid "Following composer packages are missing:" -msgstr "" +msgstr "Următoarele pachete de compoziții lipsesc:" #: templates/prefs_twofactor.twig:18 msgid "Two-factor authentication is available and configured for this account." msgstr "" +"Autentificarea pe două niveluri este disponibilă și configurată pentru acest " +"cont." #: templates/prefs_twofactor.twig:20 msgid "" "Two-factor authentication is available, but not configured for this account." msgstr "" +"Autentificarea pe două niveluri este disponibilă, dar nu este configurată " +"pentru acest cont." #: templates/prefs_twofactor.twig:24 -#, fuzzy -#| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." -msgstr "Tabele de stocare a configurării phpMyAdmin absente" +msgstr "" +"Autentificarea pe două niveluri nu este disponibilă, activează spațiul de " +"stocare pentru configurarea phpMyAdmin pentru a o utiliza." #: templates/prefs_twofactor.twig:33 msgid "You have enabled two factor authentication." -msgstr "" +msgstr "Ai activat autentificarea pe două niveluri." #: templates/prefs_twofactor.twig:43 templates/prefs_twofactor.twig:54 #: templates/prefs_twofactor_configure.twig:2 -#, fuzzy -#| msgid "Config authentication" msgid "Configure two-factor authentication" -msgstr "Autentificare Config" +msgstr "Configurează autentificarea pe două niveluri" #: templates/database/search/results.twig:12 -#, fuzzy, php-format -#| msgid "%s match(es) inside table %s" +#, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" -msgstr[0] "%s rezultat(e) în interiorul tabelului %s" -msgstr[1] "%s rezultat(e) în interiorul tabelului %s" -msgstr[2] "%s rezultat(e) în interiorul tabelului %s" +msgstr[0] "O potrivire în %2$s" +msgstr[1] "%1$s potriviri în %2$s" +msgstr[2] "%1$s de potriviri în %2$s" #: templates/database/search/results.twig:56 -#, fuzzy -#| msgid "Total: %s match" -#| msgid_plural "Total: %s matches" msgid "Total: %count% match" msgid_plural "Total: %count% matches" -msgstr[0] "Total: %s rezultat" -msgstr[1] "Total: %s rezultat(e)" -msgstr[2] "Total: %s rezultat(e)" +msgstr[0] "Total: o potrivire" +msgstr[1] "Total: %count% potriviri" +msgstr[2] "Total: %count% de potriviri" #: templates/display/export/template_loading.twig:2 -#, fuzzy -#| msgid "Export type" msgid "Export templates:" -msgstr "Tip de exportare" +msgstr "Exportă șabloane:" #: templates/display/export/template_loading.twig:6 -#, fuzzy -#| msgid "File name template" msgid "New template:" -msgstr "Șablon nume fișier" +msgstr "Șablon nou:" #: templates/display/export/template_loading.twig:8 -#, fuzzy -#| msgid "Table name" msgid "Template name" -msgstr "Denumire tabel" +msgstr "Nume șablon" #: templates/display/export/template_loading.twig:10 #: templates/server/databases/create.twig:30 -#, fuzzy msgid "Create" msgstr "Creează" #: templates/display/export/template_loading.twig:16 -#, fuzzy -#| msgid "File name template" msgid "Existing templates:" -msgstr "Șablon nume fișier" +msgstr "Șabloane existente:" #: templates/display/export/template_loading.twig:17 -#, fuzzy -#| msgid "%s table(s)" msgid "Template:" -msgstr "%s tabele" +msgstr "Șablon:" #: templates/display/export/template_loading.twig:21 -#, fuzzy -#| msgid "Updated" msgid "Update" -msgstr "Actualizat" +msgstr "Actualizează" #: templates/database/designer/schema_export.twig:4 msgid "Select Export Relational Type" -msgstr "" +msgstr "Selectează tipul relațional de export" #: templates/server/databases/create.twig:8 #: templates/server/databases/create.twig:36 -#, fuzzy -#| msgid "Create new database" msgid "Create database" -msgstr "Creează bază de date nouă" +msgstr "Creează bază de date" #: templates/server/variables/session_variable_row.twig:3 -#, fuzzy msgid "Session value" msgstr "Valoare sesiune" #: templates/database/designer/edit_delete_pages.twig:6 -#, fuzzy -#| msgid "Page titles" msgid "Page to open" -msgstr "Titluri de pagini" +msgstr "Pagină de deschis" #: templates/database/designer/edit_delete_pages.twig:6 -#, fuzzy -#| msgid "Relation deleted" msgid "Page to delete" -msgstr "Relație ștearsă" +msgstr "Pagină de șters" #: templates/display/export/options_output.twig:26 -#, fuzzy msgid "Save output to a file" -msgstr "Salvează rezultatul într-un fișier" +msgstr "Salvează ieșirea într-un fișier" #: templates/display/export/options_output.twig:51 #, php-format msgid "Skip tables larger than %s MiB" -msgstr "" +msgstr "Sari peste tabelele mai mari de %s MiO" #: templates/display/export/options_output_separate_files.twig:7 -#, fuzzy -#| msgid "Export views as tables" msgid "Export databases as separate files" -msgstr "Exportă vizualizările ca tabele" +msgstr "Exportă bazele de date ca fișiere separate" #: templates/display/export/options_output_separate_files.twig:9 -#, fuzzy -#| msgid "horizontal (rotated headers)" msgid "Export tables as separate files" -msgstr "orizontal (colontitlu rotativ)" +msgstr "Exportă tabelele ca fișiere separate" #: templates/login/twofactor/key-https-warning.twig:3 msgid "" "You are not using https to access phpMyAdmin, therefore FIDO U2F device will " "most likely refuse to authenticate you." msgstr "" +"Nu folosești https pentru a accesa phpMyAdmin, prin urmare, dispozitivul " +"FIDO U2F probabil va refuza să te autentifice." #: templates/table/structure/display_partitions.twig:8 -#, fuzzy -#| msgid "No index defined!" msgid "No partitioning defined!" -msgstr "Index nu este definit!" +msgstr "Nicio partiționare definită!" #: templates/table/structure/display_partitions.twig:11 -#, fuzzy -#| msgid "partitioned" msgid "Partitioned by:" -msgstr "partiționat" +msgstr "Partiționat de:" #: templates/table/structure/display_partitions.twig:16 -#, fuzzy -#| msgid "partitioned" msgid "Sub partitioned by:" -msgstr "partiționat" +msgstr "Sub-partiționat de:" #: templates/table/structure/display_partitions.twig:29 -#, fuzzy -#| msgid "Row length" msgid "Data length" -msgstr "Lungime linie" +msgstr "Lungime date" #: templates/table/structure/display_partitions.twig:30 -#, fuzzy -#| msgid "Row length" msgid "Index length" -msgstr "Lungime linie" +msgstr "Lungime index" #: templates/table/structure/display_partitions.twig:135 -#, fuzzy -#| msgid "partitioned" msgid "Partition table" -msgstr "partiționat" +msgstr "Tabel de partiții" #: templates/privileges/column_privileges.twig:21 #: templates/privileges/column_privileges.twig:22 -#, fuzzy -#| msgid "None" msgctxt "None privileges" msgid "None" -msgstr "Nici unul(a)" +msgstr "Niciunul" #: templates/error/report_form.twig:6 msgid "" @@ -18519,99 +15841,90 @@ msgid "" "about relevant configuration settings. It will be sent to the phpMyAdmin " "team for debugging the error." msgstr "" +"Acest raport include automat date despre erori și informații despre setările " +"de configurare relevante. El va fi trimis echipei phpMyAdmin pentru " +"depanarea erorilor." #: templates/error/report_form.twig:12 msgid "" "Can you tell us the steps leading to this error? It decisively helps in " "debugging:" msgstr "" +"Poți să ne spui pașii care conduc la această eroare? Ne ajută decisiv la " +"depanare:" #: templates/error/report_form.twig:19 msgid "You may examine the data in the error report:" -msgstr "" +msgstr "Poți examina datele în raportul de erori:" #: templates/database/tracking/untracked_tables.twig:1 -#, fuzzy msgid "Untracked tables" -msgstr "Tabele fără monitorizare" +msgstr "Tabele neurmărite" #: templates/table/structure/actions_in_table_structure.twig:15 -#, fuzzy, php-format +#, php-format msgid "A primary key has been added on %s." -msgstr "A fost adăugată o cheie primară la %s." +msgstr "A fost adăugată o cheie principală pe %s." #: templates/table/structure/actions_in_table_structure.twig:33 #: templates/table/structure/actions_in_table_structure.twig:51 #: templates/table/structure/actions_in_table_structure.twig:80 #: templates/table/structure/actions_in_table_structure.twig:103 -#, fuzzy, php-format +#, php-format msgid "An index has been added on %s." -msgstr "A fost adăugat un index la %s." +msgstr "A fost adăugat un index pe %s." #: templates/table/search/zoom_result_form.twig:7 -#, fuzzy msgid "Browse/Edit the points" -msgstr "Parcurge/Editează punctele" +msgstr "Răsfoiește/editează punctele" #: templates/table/search/zoom_result_form.twig:15 -#, fuzzy msgid "How to use" -msgstr "Cum să utilizaţi" +msgstr "Cum să folosești" #: templates/table/search/zoom_result_form.twig:23 -#, fuzzy msgid "Reset zoom" -msgstr "Resetare zoom" +msgstr "Resetează zoom-ul" #: templates/privileges/add_privileges_routine.twig:3 -#, fuzzy -#| msgid "Add privileges on the following table" msgid "Add privileges on the following routine:" -msgstr "Adaugă drepturi la următorul tabel" +msgstr "Adaugă privilegii la următoarea rutină:" #: templates/login/twofactor/invalid.twig:2 -#, fuzzy -#| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "The configured two factor authentication is not available, please install " "missing dependencies." -msgstr "Tabele de stocare a configurării phpMyAdmin absente" +msgstr "" +"Autentificarea pe două niveluri configurată nu este disponibilă, te rog " +"instalează dependențe care lipsesc." #: templates/table/tracking/structure_snapshot_columns.twig:47 #: templates/table/structure/table_structure_row.twig:34 -#, fuzzy -#| msgid "None" msgctxt "None for default" msgid "None" -msgstr "Nici unul/una" +msgstr "Niciuna" #: templates/table/search/search_and_replace.twig:3 -#, fuzzy msgid "Replace with:" -msgstr "Înlocuiţi cu:" +msgstr "Înlocuiește cu:" #: templates/table/search/search_and_replace.twig:19 -#, fuzzy msgid "Use regular expression" -msgstr "Utilizați o expresie regulată" +msgstr "Folosește expresia obișnuită" #: templates/table/search/options.twig:6 -#, fuzzy msgid "Select columns (at least one):" -msgstr "Selectaţi coloanele (cel puţin una):" +msgstr "Selectează coloane (cel puțin una):" #: templates/table/search/options.twig:26 -#, fuzzy msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Adaugă condiție de căutare (parte a comenzii \"where\"):" +msgstr "Adaugă condiții de căutare (corpul propoziției „unde”):" #: templates/table/search/options.twig:34 -#, fuzzy msgid "Number of rows per page" -msgstr "Numărul de înregistrări pe pagină" +msgstr "Număr de rânduri per pagină" #: templates/table/search/options.twig:45 -#, fuzzy msgid "Display order:" msgstr "Ordine de afișare:" @@ -18634,191 +15947,144 @@ msgstr "" "( '\\\\xyz' or 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.twig:21 -#, fuzzy msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -"Pentru valorile implicite, vă rugăm să introduceți o singură valoare, fără " -"backslash, escape sau ghilimele, folosind formatul: a" +"Pentru valori implicite, te rog introdu o singură valoare, fără linie oblică " +"sau ghilimele, folosind acest format: a" #: templates/columns_definitions/table_fields_definitions.twig:59 msgid "Virtuality" -msgstr "" +msgstr "Virtualitate" #: templates/columns_definitions/table_fields_definitions.twig:65 -#, fuzzy -#| msgid "Add/Delete Field Columns" msgid "Move column" -msgstr "Adaugă/șterge coloane" +msgstr "Mută coloana" #: templates/columns_definitions/table_fields_definitions.twig:76 #: templates/columns_definitions/table_fields_definitions.twig:87 -#, fuzzy -#| msgid "Available transformations" msgid "List of available transformations and their options" -msgstr "Transformări disponibile" +msgstr "Lista transformărilor disponibile și opțiunile lor" #: templates/columns_definitions/table_fields_definitions.twig:82 -#, fuzzy -#| msgid "Browser transformation" msgid "Browser display transformation options" -msgstr "Transformare navigator" +msgstr "Opțiuni transformare afișare navigator" #: templates/columns_definitions/table_fields_definitions.twig:83 #: templates/columns_definitions/table_fields_definitions.twig:94 -#, fuzzy -#| msgid "" -#| "Please enter the values for transformation options using this format: " -#| "'a', 100, b,'c'…
If you ever need to put a backslash (\"\\\") or a " -#| "single quote (\"'\") amongst those values, precede it with a backslash " -#| "(for example '\\\\xyz' or 'a\\'b')." msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'…
If you ever need to put a backslash (\"\\\") or a single " "quote (\"'\") amongst those values, precede it with a backslash (for example " "'\\\\xyz' or 'a\\'b')." msgstr "" -"Introduceți valorile pentru opțiunile de transformare utilizînd acest " -"format: 'a', 100, b,'c'…
Dacă trebuie să folosiți backslash (\"\\\") " -"sau apostrof (\"'\") in aceste valori, introduceți backslash-uri (ex. '\\" -"\\xyz' sau 'a\\'b')." +"Te rog introdu valorile pentru opțiunile de transformare folosind acest " +"format: 'a', 100, b,'c'…
Dacă trebuie să pui o linie oblică („\\”) sau " +"un apostrof („'”) între aceste valori, precede-le cu o linie oblică (" +"exemplu, '\\\\xyz' sau 'a\\'b')." #: templates/columns_definitions/table_fields_definitions.twig:93 -#, fuzzy -#| msgid "Transformation options" msgid "Input transformation options" -msgstr "Opțiuni de transformare" +msgstr "Opțiuni transformare intrări" #: templates/database/designer/table_list.twig:4 -#, fuzzy msgid "Hide/Show all" -msgstr "Arată/ascunde toate" +msgstr "Ascunde/arată tot" #: templates/database/designer/table_list.twig:14 -#, fuzzy -#| msgid "Hide/Show Tables with no relation" msgid "Hide/Show tables with no relationship" -msgstr "Arată/ascunde tabele fără realție" +msgstr "Ascunde/arată tabelele fără nicio relație" #: templates/database/designer/table_list.twig:55 -#, fuzzy -#| msgid "Number of tables" msgid "Number of tables:" -msgstr "Număr de tabele" +msgstr "Număr de tabele:" #: templates/table/gis_visualization/gis_visualization.twig:3 -#, fuzzy msgid "Display GIS Visualization" -msgstr "Afișează Vizualizarea GIS" +msgstr "Afișează vizualizarea GIS" #: templates/table/gis_visualization/gis_visualization.twig:8 -#, fuzzy -#| msgid "Add/Delete Field Columns" msgid "Label column" -msgstr "Adaugă/șterge coloane" +msgstr "Coloană de etichete" #: templates/table/gis_visualization/gis_visualization.twig:11 -#, fuzzy msgid "-- None --" msgstr "-- Niciunul --" #: templates/table/gis_visualization/gis_visualization.twig:19 -#, fuzzy -#| msgid "Log file count" msgid "Spatial column" -msgstr "Număr de fișiere-jurnal" +msgstr "Coloană spațială" #: templates/display/export/method.twig:3 -#, fuzzy -#| msgid "Export method" msgid "Export method:" -msgstr "Metodă de export" +msgstr "Metodă de export:" #: templates/display/export/method.twig:9 -#, fuzzy msgid "Quick - display only the minimal options" -msgstr "Rapid - afișează doar opțiunile minimale" +msgstr "Rapid - afișează numai opțiuni minime" #: templates/display/export/method.twig:17 -#, fuzzy msgid "Custom - display all possible options" -msgstr "Custom - afișează toate opțiunile posibile" +msgstr "Personalizat - afișează toate opțiunile posibile" #: templates/table/structure/add_column.twig:9 -#, fuzzy, php-format -#| msgid "Add %s field(s)" +#, php-format msgid "Add %s column(s)" -msgstr "Adaugă %s câmp(uri)" +msgstr "Adaugă coloane %s" #: templates/table/structure/add_column.twig:14 -#, fuzzy -#| msgid "At Beginning of Table" msgid "at beginning of table" -msgstr "La începutul tabelului" +msgstr "la începutul tabelului" #: templates/table/structure/table_structure_row.twig:55 -#, fuzzy, php-format -#| msgid "Table %s has been dropped." +#, php-format msgid "Column %s has been dropped." -msgstr "Tabelul %s a fost aruncat" +msgstr "Coloana %s a fost eliminată." #: templates/database/create_table.twig:15 -#, fuzzy -#| msgid "Number of fields" msgid "Number of columns" -msgstr "Număr de câmpuri" +msgstr "Număr de coloane" #: templates/login/twofactor/key.twig:3 msgid "" "Please connect your FIDO U2F device into your computer's USB port. Then " "confirm login on the device." msgstr "" +"Te rog conectează-ți dispozitivul FIDO U2F la portul USB al calculatorului. " +"Apoi confirmă autentificarea pe dispozitiv." #: templates/database/qbe/footer_options.twig:3 -#, fuzzy msgid "Add/Delete criteria rows" -msgstr "Adaugă/Șterge criteriul răndurilor" +msgstr "Adaugă/șterge rândurile de criterii" #: templates/database/qbe/footer_options.twig:5 -#, fuzzy msgid "Add/Delete columns" -msgstr "Adaugă/Șterge coloane" +msgstr "Adaugă/șterge coloane" #: templates/database/designer/page_save_as.twig:17 -#, fuzzy -#| msgid "Export/Import to scale" msgid "Save to selected page" -msgstr "Exportă/Importă la scală" +msgstr "Salvează în pagina selectată" #: templates/database/designer/page_save_as.twig:17 -#, fuzzy -#| msgid "Create a new index" msgid "Create a page and save to it" -msgstr "Creează un nou index" +msgstr "Creează o pagină și salvează în ea" #: templates/database/designer/page_save_as.twig:30 -#, fuzzy -#| msgid "User name" msgid "New page name" -msgstr "Nume utilizator" +msgstr "Nume pagină nouă" #: templates/table/relation/common_form.twig:6 -#, fuzzy -#| msgid "Foreign key constraint" msgid "Foreign key constraints" -msgstr "Constrîngere de cheie străină" +msgstr "Constrângeri cheie străină" #: templates/table/relation/common_form.twig:10 -#, fuzzy msgid "Actions" msgstr "Acțiuni" #: templates/table/relation/common_form.twig:11 -#, fuzzy -#| msgid "Constraints for table" msgid "Constraint properties" -msgstr "Restrictii pentru tabele" +msgstr "Proprietăți constrângere" #: templates/table/relation/common_form.twig:15 msgid "" @@ -18826,336 +16092,290 @@ msgid "" "an index on it. Alternatively, you can define an index below, before " "creating the foreign key." msgstr "" +"Crearea unei chei străine pe o coloană neindexată creează automat un index " +"pentru ea. Alternativ, poți defini un index mai jos, înainte de crearea " +"cheii străine." #: templates/table/relation/common_form.twig:20 msgid "" "Only columns with index will be displayed. You can define an index below." -msgstr "" +msgstr "Vor fi afișate numai coloanele cu index. Poți defini un index mai jos." #: templates/table/relation/common_form.twig:24 -#, fuzzy msgid "Foreign key constraint" -msgstr "Constrîngere de cheie străină" +msgstr "Constrângere cheie străină" #: templates/table/relation/common_form.twig:89 -#, fuzzy -#| msgid "Add constraints" msgid "+ Add constraint" -msgstr "Adaugă constrângeri" +msgstr "+ Adaugă constrângere" #: templates/table/relation/common_form.twig:99 #: templates/table/relation/common_form.twig:104 -#, fuzzy -#| msgid "Internal relations" msgid "Internal relationships" msgstr "Relații interne" #: templates/table/relation/common_form.twig:110 -#, fuzzy msgid "Internal relation" msgstr "Relație internă" #: templates/table/relation/common_form.twig:112 -#, fuzzy msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -"Nu este necesară o relație internă atunci cînd există o cheie externă " +"Nu este necesară o relație internă când există o relație CHEIE STRĂINĂ " "corespondentă." #: templates/table/relation/common_form.twig:172 -#, fuzzy -#| msgid "Choose column to display" msgid "Choose column to display:" -msgstr "Selectează coloana pentru afișare" +msgstr "Alege coloana de afișat:" #: templates/privileges/delete_user_fieldset.twig:3 -#, fuzzy -#| msgid "Remove selected users" msgid "Remove selected user accounts" -msgstr "Eliminarea utilizatorilor selectați" +msgstr "Înlătură conturile utilizatorilor selectați" #: templates/privileges/delete_user_fieldset.twig:6 -#, fuzzy msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "" -"Revocarea tuturor drepturilor active ale utilizatorilor și stergerea " -"acestora." +msgstr "Revocă toate privilegiile active pentru utilizatori și apoi le șterge." #: templates/privileges/delete_user_fieldset.twig:7 #: templates/privileges/delete_user_fieldset.twig:10 #: templates/privileges/delete_user_fieldset.twig:11 -#, fuzzy msgid "Drop the databases that have the same names as the users." -msgstr "Aruncă baza de date care are același nume ca utilizatorul." +msgstr "Elimină bazele de date care are același nume ca utilizatorii." #: templates/database/designer/options_panel.twig:34 #: templates/database/designer/options_panel.twig:200 -#, fuzzy -#| msgid "Relation operator" msgid "Relationship operator" -msgstr "Operator relațional" +msgstr "Operator relație" #: templates/table/search/selection_form.twig:12 -#, fuzzy msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" -"Faceți o \"interogare prin exemplu\" (metacaracter: \"%\") pentru două " -"coloane diferite" +"Execută o „interogare prin exemplu„ (metacaracter: „%”) pentru două coloane " +"diferite" #: templates/table/search/selection_form.twig:42 -#, fuzzy msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Execută o interogare prin exemplu (metacaracter: \"%\")" +msgstr "Execută o „interogare prin exemplu„ (metacaracter: „%”)" #: templates/display/results/options_block.twig:30 -#, fuzzy msgid "Relational key" msgstr "Cheie relațională" #: templates/display/results/options_block.twig:30 -#, fuzzy -#| msgid "Disable foreign key checks" msgid "Display column for relationships" -msgstr "Dezactivare verificări de cheie străine" +msgstr "Afișează coloana pentru relații" #: templates/display/results/options_block.twig:46 -#, fuzzy msgid "Show binary contents" -msgstr "Afișează conținut binar" +msgstr "Arată conținut binar" #: templates/display/results/options_block.twig:53 -#, fuzzy msgid "Show BLOB contents" -msgstr "Afișează conținut BLOB" +msgstr "Arată conținut BLOB" #: templates/display/results/options_block.twig:67 -#, fuzzy msgid "Hide browser transformation" -msgstr "Ascunde transformarea browser-ului" +msgstr "Ascunde transformarea navigatorului" #: templates/display/results/options_block.twig:77 -#, fuzzy msgid "Well Known Text" -msgstr "Text Bine Cunoscut" +msgstr "Text bine cunoscut" #: templates/display/results/options_block.twig:77 -#, fuzzy msgid "Well Known Binary" -msgstr "Binar Bine Cunoscut" +msgstr "Binar Popular" #: templates/server/binlog/log_selector.twig:5 -#, fuzzy msgid "Select binary log to view" -msgstr "Selectați jurnalul binar pentru vizualizare" +msgstr "Selectează jurnalul binar pentru vizualizare" #: templates/table/secondary_tabs.twig:9 -#, fuzzy -#| msgid "Relation view" msgid "Relation view" -msgstr "Vizualizare relațională" +msgstr "Vizualizare relație" #: templates/table/index_form.twig:15 -#, fuzzy msgid "Index name:" -msgstr "Denumire index:" +msgstr "Nume index:" #: templates/table/index_form.twig:16 -#, fuzzy msgid "" "\"PRIMARY\" must be the name of and only of a primary key!" -msgstr "Numele „PRIMARY” trebuie să fie numai la cheia primară!" +msgstr "" +"„PRIMARY” trebuie să fie numai numele unei chei principale!" #: templates/table/index_form.twig:34 -#, fuzzy -#| msgid "Index cache size" msgid "Index choice:" -msgstr "Dimensiune cache index" +msgstr "Alegere index:" #: templates/table/index_form.twig:42 -#, fuzzy -#| msgid "Table options" msgid "Advanced Options" -msgstr "Opțiuni tabel" +msgstr "Opțiuni avansate" #: templates/table/index_form.twig:48 msgid "Key block size:" -msgstr "" +msgstr "Dimensiune bloc chei:" #: templates/table/index_form.twig:65 -#, fuzzy msgid "Index type:" -msgstr "Tip index:" +msgstr "Tip de index:" #: templates/table/index_form.twig:77 -#, fuzzy -#| msgid "User:" msgid "Parser:" -msgstr "Utilizator:" +msgstr "Interpretor:" #: templates/table/index_form.twig:93 -#, fuzzy msgid "Comment:" msgstr "Comentariu:" #: templates/table/index_form.twig:136 templates/table/index_form.twig:173 -#, fuzzy -#| msgid "Drag to reorder" msgid "Drag to reorder" -msgstr "Drag and drop pentru reordonare" +msgstr "Trage pentru a reordona" #: templates/server/variables/variable_row.twig:6 msgid "This is a read-only variable and can not be edited" msgstr "" +"Aceasta este o variabilă care poate fi doar citită și nu poate fi editată" #: templates/table/structure/display_table_stats.twig:14 -#, fuzzy msgid "Space usage" msgstr "Utilizare spațiu" #: templates/table/structure/display_table_stats.twig:37 -#, fuzzy msgid "Effective" msgstr "Efectiv" #: templates/prefs_twofactor_configure.twig:8 -#, fuzzy -#| msgid "Config authentication" msgid "Enable two-factor authentication" -msgstr "Autentificare Config" +msgstr "Activează autentificarea pe două niveluri" #: templates/database/structure/show_create_row.twig:7 -#, fuzzy, php-format -#| msgid "Create User" +#, php-format msgid "Create %s" -msgstr "Creare relație" +msgstr "Creează %s" #: templates/database/structure/structure_table_row.twig:222 -#, fuzzy msgid "in use" msgstr "în uz" #: templates/privileges/add_privileges_table.twig:3 -#, fuzzy -#| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" -msgstr "Adaugă drepturi la următorul tabel" +msgstr "Adaugă privilegii la următorul tabel:" #: templates/display/export/options_output_compression.twig:4 -#, fuzzy -#| msgid "Compression" msgid "Compression:" -msgstr "Compresie" +msgstr "Compresie:" #: templates/display/export/options_output_compression.twig:11 -#, fuzzy -#| msgid "\"zipped\"" msgid "zipped" -msgstr "„arhivat”" +msgstr "arhivat cu zip" #: templates/display/export/options_output_compression.twig:17 -#, fuzzy -#| msgid "\"gzipped\"" msgid "gzipped" -msgstr "cu „gzip”" +msgstr "arhivat cu gzip" #: url.php:41 -#, fuzzy -#| msgid "Taking you to next step…" msgid "Taking you to the target site." -msgstr "Continuați cu pasul următor…" +msgstr "Te duc la situl de destinație." #: user_password.php:35 -#, fuzzy msgid "You don't have sufficient privileges to be here right now!" -msgstr "Nu dețineți drepturi de acces pentru a vă afla aici!" +msgstr "Nu ai suficiente privilegii pentru a fi aici, chiar acum!" #: view_create.php:51 msgid "View name can not be empty!" -msgstr "" +msgstr "Numele vizualizării nu poate fi gol!" #: view_operations.php:103 -#, fuzzy msgid "Rename view to" -msgstr "Redenumire tabel la" +msgstr "Redenumește vizualizarea în" #: view_operations.php:142 -#, fuzzy msgid "Delete the view (DROP)" -msgstr "Nu sînt baze de date" +msgstr "Șterge vizualizarea (DROP)" #: libraries/advisory_rules.txt:49 msgid "Uptime below one day" -msgstr "" +msgstr "Timp de funcționare sub o zi" #: libraries/advisory_rules.txt:52 msgid "Uptime is less than 1 day, performance tuning may not be accurate." msgstr "" +"Timpul de funcționare este sub o zi, ajustarea performanței poate să nu fie " +"precisă." #: libraries/advisory_rules.txt:53 msgid "" "To have more accurate averages it is recommended to let the server run for " "longer than a day before running this analyzer" msgstr "" +"Pentru a obține date mult mai precise, este recomandat să lași serverul să " +"ruleze mai mult de o zi, înainte de a rula acest analizor" #: libraries/advisory_rules.txt:54 #, php-format msgid "The uptime is only %s" -msgstr "" +msgstr "Timpul de funcționare este de numai %s" #: libraries/advisory_rules.txt:56 -#, fuzzy msgid "Questions below 1,000" -msgstr "Întrebări sub 1000" +msgstr "Sub 1000 de întrebări" #: libraries/advisory_rules.txt:59 msgid "" "Fewer than 1,000 questions have been run against this server. The " "recommendations may not be accurate." msgstr "" +"Au fost rulate pe acest server sub 1000 de întrebări. Recomandările s-ar " +"putea să nu fie precise." #: libraries/advisory_rules.txt:60 msgid "" "Let the server run for a longer time until it has executed a greater amount " "of queries." msgstr "" +"Lasă serverul să ruleze o perioadă mai îndelungată de timp până ce a " +"executat o foarte multe interogări." #: libraries/advisory_rules.txt:61 -#, fuzzy, php-format +#, php-format msgid "Current amount of Questions: %s" -msgstr "Cantitatea curentă de întrebări: %s" +msgstr "Total întrebări acum: %s" #: libraries/advisory_rules.txt:63 -#, fuzzy msgid "Percentage of slow queries" -msgstr "Procentajul de interogări lente" +msgstr "Procent de interogări lente" #: libraries/advisory_rules.txt:66 msgid "" "There is a lot of slow queries compared to the overall amount of Queries." msgstr "" +"Există o mulțime de interogări lente în comparație cu totalul interogărilor." #: libraries/advisory_rules.txt:67 libraries/advisory_rules.txt:74 msgid "" "You might want to increase {long_query_time} or optimize the queries listed " "in the slow query log" msgstr "" +"Poate vrei să mărești {long_query_time} sau să optimizezi interogările " +"listate în jurnalul interogărilor lente" #: libraries/advisory_rules.txt:68 #, php-format msgid "The slow query rate should be below 5%%, your value is %s%%." -msgstr "" +msgstr "Rata de interogări lente trebuie să fie sub 5%%, valoarea ta este %s%%." #: libraries/advisory_rules.txt:70 -#, fuzzy msgid "Slow query rate" -msgstr "Rata interogărilor lente" +msgstr "Rată interogări lente" #: libraries/advisory_rules.txt:73 msgid "" "There is a high percentage of slow queries compared to the server uptime." msgstr "" +"Există un procent mare de interogări lente în comparație cu timpul de " +"funcționare al serverului." #: libraries/advisory_rules.txt:75 #, php-format @@ -19163,89 +16383,89 @@ msgid "" "You have a slow query rate of %s per hour, you should have less than 1%% per " "hour." msgstr "" +"Ai o rată de interogări lente de %s pe oră, ar trebui să ai mai puțin de 1%% " +"pe oră." #: libraries/advisory_rules.txt:77 -#, fuzzy msgid "Long query time" -msgstr "Durata interogării lente" +msgstr "Durată interogări lente" #: libraries/advisory_rules.txt:80 msgid "" "{long_query_time} is set to 10 seconds or more, thus only slow queries that " "take above 10 seconds are logged." msgstr "" +"{long_query_time} este setat la 10 secunde sau mai mult, așadar sunt " +"înregistrate numai interogările lente care durează peste 10 secunde." #: libraries/advisory_rules.txt:81 msgid "" "It is suggested to set {long_query_time} to a lower value, depending on your " "environment. Usually a value of 1-5 seconds is suggested." msgstr "" +"Este recomandat să setezi {long_query_time} la o valoare mai mică, în " +"funcție de mediul tău. De obicei, este sugerată o valoare de 1-5 secunde." #: libraries/advisory_rules.txt:82 -#, fuzzy, php-format -#| msgid "long_query_time is set to %d second(s)." +#, php-format msgid "long_query_time is currently set to %ds." -msgstr "long_query_time este setat la %d secunde." +msgstr "long_query_time este setat acum la %d." #: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 -#, fuzzy msgid "Slow query logging" -msgstr "Jurnalizarea interogărilor lente" +msgstr "Jurnalizare interogări lente" #: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 -#, fuzzy -#| msgid "The server is not responding" msgid "The slow query log is disabled." -msgstr "Serverul nu răspunde" +msgstr "Jurnalul interogări lente este dezactivat." #: libraries/advisory_rules.txt:88 msgid "" "Enable slow query logging by setting {log_slow_queries} to 'ON'. This will " "help troubleshooting badly performing queries." msgstr "" +"Activează jurnalizarea interogări lente setând {log_slow_queries} la ”PORNIT”" +". Acest lucru va ajuta la depanarea interogărilor cu performanțe slabe." #: libraries/advisory_rules.txt:89 -#, fuzzy -#| msgid "long_query_time is set to %d second(s)." msgid "log_slow_queries is set to 'OFF'" -msgstr "long_query_time este setat la %d secunde." +msgstr "long_query_time este setat la „OPRIT”" #: libraries/advisory_rules.txt:95 msgid "" "Enable slow query logging by setting {slow_query_log} to 'ON'. This will " "help troubleshooting badly performing queries." msgstr "" +"Activează jurnalizarea interogări lente setând {slow_query_log} la ”PORNIT”. " +"Acest lucru va ajuta la depanarea interogărilor cu performanțe slabe." #: libraries/advisory_rules.txt:96 -#, fuzzy -#| msgid "long_query_time is set to %d second(s)." msgid "slow_query_log is set to 'OFF'" -msgstr "long_query_time este setat la %d secunde." +msgstr "long_query_time este setat la ”OPRIT”" #: libraries/advisory_rules.txt:100 -#, fuzzy -#| msgid "Select Tables" msgid "Release Series" -msgstr "Selectează tabele" +msgstr "Lansează serii" #: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." -msgstr "" +msgstr "Versiunea serverului MySQL este mai mică decât versiunea 5.1." #: libraries/advisory_rules.txt:104 msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." msgstr "" +"Ar trebui să actualizezi, MySQL 5.1 a îmbunătățit performanța, iar MySQL 5.5 " +"a adus alte îmbunătățiri." #: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 #: libraries/advisory_rules.txt:119 -#, fuzzy, php-format +#, php-format msgid "Current version: %s" msgstr "Versiunea actuală: %s" #: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 -#, fuzzy msgid "Minor Version" msgstr "Versiune minoră" @@ -19258,19 +16478,18 @@ msgid "" "You should upgrade, as recent versions of MySQL 5.1 have improved " "performance and MySQL 5.5 even more so." msgstr "" +"Ar trebui să actualizezi, versiunile recente ale MySQL 5.1 au îmbunătățit " +"performanța, iar MySQL 5.5 a adus alte îmbunătățiri." #: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" #: libraries/advisory_rules.txt:118 -#, fuzzy -#| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5." -msgstr "Ar trebui sa reactualizati serverul %s %s la o versiune mai noua." +msgstr "Ar trebui să actualizezi, la o versiune stabilă a MySQL 5.5." #: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 -#, fuzzy msgid "Distribution" msgstr "Distribuție" @@ -19279,198 +16498,165 @@ msgid "Version is compiled from source, not a MySQL official binary." msgstr "" #: libraries/advisory_rules.txt:125 -#, fuzzy msgid "" "If you did not compile from source, you may be using a package modified by a " "distribution. The MySQL manual only is accurate for official MySQL binaries, " "not any package distributions (such as RedHat, Debian/Ubuntu etc)." msgstr "" -"Dacă nu ați compilat din sursă, este posibil să utilizați un pachet " -"modificat de o distribuție. Manualul MySQL este precis numai pentru limbile " -"oficiale MySQL, nu pentru orice distribuții ale pachetului (cum ar fi " -"RedHat, Debian/Ubuntu etc)." +"Dacă nu ai compilat din sursă, este posibil să folosești un pachet modificat " +"de o distribuție. Manualul MySQL este precis numai pentru binarele oficiale " +"MySQL, nu pentru toate distribuțiile de pachete (cum ar fi RedHat, Debian/" +"Ubuntu etc)." #: libraries/advisory_rules.txt:126 -#, fuzzy msgid "'source' found in version_comment" -msgstr "'source' gasită în version_comment" +msgstr "„sursă” găsită în version_comment" #: libraries/advisory_rules.txt:131 -#, fuzzy msgid "The MySQL manual only is accurate for official MySQL binaries." -msgstr "" -"Manualul MySQL este precis numai pentru binarele (sursele) oficiale MySQL." +msgstr "Manualul MySQL este precis numai pentru binarele oficiale MySQL." #: libraries/advisory_rules.txt:132 msgid "" "Percona documentation is at https://www.percona.com/software/documentation/" msgstr "" +"Documentația Percona este la https://www.percona.com/software/documentation/" #: libraries/advisory_rules.txt:133 -#, fuzzy msgid "'percona' found in version_comment" -msgstr "'percona' gasită în version_comment" +msgstr "„percona” găsit în version_comment" #: libraries/advisory_rules.txt:135 -#, fuzzy msgid "MySQL Architecture" -msgstr "Arhitectura MySQL" +msgstr "Arhitectură MySQL" #: libraries/advisory_rules.txt:138 -#, fuzzy msgid "MySQL is not compiled as a 64-bit package." -msgstr "MySQL nu este compilat ca un pachet pe 64 de biți." +msgstr "MySQL nu este compilat ca un pachet de 64 de biți." #: libraries/advisory_rules.txt:139 -#, fuzzy msgid "" "Your memory capacity is above 3 GiB (assuming the Server is on localhost), " "so MySQL might not be able to access all of your memory. You might want to " "consider installing the 64-bit version of MySQL." msgstr "" -"Capacitatea de memorie depășește 3 GiB (presupunând că serverul de bază de " -"date este pe server-ul, PC-ul, propriu), așa că este posibil ca MySQL sa nu " -"poată accesa toată memoria RAM a sistemului. Ați putea lua în considerare " -"instalarea versiunii de MySQL pe 64 de biți." +"Capacitatea memoriei tale depășește 3 GiO (presupunând că serverul este pe " +"localhost), probabil MySQL nu poate să-ți acceseze toată. Poate iei în " +"considerare instalarea versiunii MySQL pe 64 de biți." #: libraries/advisory_rules.txt:140 -#, fuzzy, php-format +#, php-format msgid "Available memory on this host: %s" -msgstr "Memoria disponibilă pe acest server este: %s" +msgstr "Memorie disponibilă pe această gazdă: %s" #: libraries/advisory_rules.txt:146 -#, fuzzy msgid "Query cache disabled" -msgstr "Pastrarea in memoria cache a interogărilor este dezactivată" +msgstr "Cache interogări dezactivat" #: libraries/advisory_rules.txt:149 -#, fuzzy msgid "The query cache is not enabled." -msgstr "Pastrarea in memoria cache a interogărilor nu este activată." +msgstr "Cache-ul interogări nu este activat." #: libraries/advisory_rules.txt:150 -#, fuzzy msgid "" "The query cache is known to greatly improve performance if configured " "correctly. Enable it by setting {query_cache_size} to a 2 digit MiB value " "and setting {query_cache_type} to 'ON'. Note: If you are using " "memcached, ignore this recommendation." msgstr "" -"Păstrarea în memoria cache a interogărilor se știe că îmbunătățește " -"performanța dacă este configurată corect. Această opțiune poate fi activată " -"prin setarea parametrului {query_cache_size} cu o valoare de 2 MiB și prin " -"setarea parametrului {query_cache_type} cu valoarea 'ON'. Notă: Dacă " -"utilizați memcached, ignorați această recomandare." +"Este binecunoscut, cache-ul interogărilor îmbunătățește performanța dacă " +"este configurat corect. Activează-l setând {query_cache_size} la o valoare " +"de 2 MiO și setând {query_cache_type} la „PORNIT”. Notă: Dacă " +"folosești memcached, ignoră această recomandare." #: libraries/advisory_rules.txt:151 -#, fuzzy msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" -"parametrul query_cache_size este setat cu valoarea 0 sau parametrul " -"query_cache_type este setat cu valoarea 'OFF'" +"query_cache_size este setat la 0 sau query_cache_type este setat la ”OPRIT”" #: libraries/advisory_rules.txt:153 -#, fuzzy msgid "Query caching method" -msgstr "Metoda de păstrare în memoria cache a interogarilor" +msgstr "Metodă de memorare în cache a interogărilor" #: libraries/advisory_rules.txt:156 -#, fuzzy msgid "Suboptimal caching method." -msgstr "Metoda de folosire a memoriei cache sub nivelul optim." +msgstr "Metodă de memorare în cache sub cea optimă." #: libraries/advisory_rules.txt:157 -#, fuzzy msgid "" "You are using the MySQL Query cache with a fairly high traffic database. It " "might be worth considering to use memcached instead of the MySQL Query " "cache, especially if you have multiple slaves." msgstr "" -"Folosiți metoda de păstrare în memoria cache a interogărilor MySQL prin " -"creșterea traficului destul de mult pe baza de date. Ar putea merita sa " -"aveți în vedere utilizarea opțiunii memcached în locul păstrare în memoria " -"cache a interogărilor MySQL, mai ales dacă aveți mai multe instanțe." +"Folosești cache interogări MySQL pentru o bază de date cu trafic destul de " +"mare. Poate trebuie să iei în considerare folosirea memcached în " +"loc de cache interogări MySQL, mai ales dacă ai mai mulți sclavi." #: libraries/advisory_rules.txt:158 -#, fuzzy, php-format +#, php-format msgid "" "The query cache is enabled and the server receives %d queries per second. " "This rule fires if there is more than 100 queries per second." msgstr "" -"Opțiunea de păstrare în memoria cache a interogărilor MySQL este activata și " -"serverul primește %d interogări pe secundă. Această regulă se activează dacă " -"există mai mult de 100 de interogări pe secundă." +"Cache-ul interogări este activat și serverul primește %d de interogări pe " +"secundă. Această regulă se activează dacă există mai mult de 100 de " +"interogări pe secundă." #: libraries/advisory_rules.txt:160 -#, fuzzy, php-format +#, php-format msgid "Query cache efficiency (%%)" -msgstr "" -"Eficiența metodei de păstrare în memoria cache a interogărilor MySQL (%%)" +msgstr "Eficiență cache interogări (%%)" #: libraries/advisory_rules.txt:163 -#, fuzzy msgid "Query cache not running efficiently, it has a low hit rate." -msgstr "" -"Metoda de păstrare în memoria cache a interogărilor nu funcționează " -"eficient, are o rată scăzută de acțiune." +msgstr "Cache interogări nu rulează eficient, are o rată scăzută de succes." #: libraries/advisory_rules.txt:164 -#, fuzzy msgid "Consider increasing {query_cache_limit}." -msgstr "" -"Aveți în considerare creșterea valorii parametrului {query_cache_limit}." +msgstr "Ia în considerare creșterea {query_cache_limit}." #: libraries/advisory_rules.txt:165 -#, fuzzy, php-format +#, php-format msgid "The current query cache hit rate of %s%% is below 20%%" -msgstr "" -"Rata curenta de acțiune a metodei de păstrare în memoria cache a " -"interogărilor %s%% este sub 20%%" +msgstr "Rata de succes actuală cache interogări de %s%% este sub 20%%" #: libraries/advisory_rules.txt:167 -#, fuzzy msgid "Query Cache usage" -msgstr "Utilizarea metodei de păstrare în memoria cache a interogărilor" +msgstr "Utilizare cache interogări" #: libraries/advisory_rules.txt:170 -#, fuzzy, php-format +#, php-format msgid "Less than 80%% of the query cache is being utilized." -msgstr "" -"Mai puțin de 80%% din memoria cache alocata interogărilor este utilizată." +msgstr "Este utilizat mai puțin de 80%% din cache-ul interogări." #: libraries/advisory_rules.txt:171 -#, fuzzy msgid "" "This might be caused by {query_cache_limit} being too low. Flushing the " "query cache might help as well." msgstr "" -"Aceasta poate fi cauzată de o valoare scăzuta a parametrului " -"{query_cache_limit}. Golirea (ștergerea) memoria cache a interogărilor v-ar " -"putea ajuta, de asemenea." +"Aceasta poate fi cauzată de o valoare prea mică pentru {query_cache_limit}. " +"Probabil ștergerea cache interogări ar putea fi utilă." #: libraries/advisory_rules.txt:172 -#, fuzzy, php-format +#, php-format msgid "" "The current ratio of free query cache memory to total query cache size is %s" "%%. It should be above 80%%" msgstr "" -"Raportul curent dintre memoria cache liberă a interogărilor și memoria cache " -"totală a interogărilor este %s%%. Ar trebui să fie peste 80%%" +"Raportul curent dintre memoria disponibilă cache interogări și dimensiunea " +"cache interogări totală este de %s%%. Ar trebui să fie peste 80%%" #: libraries/advisory_rules.txt:174 -#, fuzzy msgid "Query cache fragmentation" -msgstr "Fragmentarea memoriei cache a interogărilor" +msgstr "Fragmentare cache interogări" #: libraries/advisory_rules.txt:177 -#, fuzzy msgid "The query cache is considerably fragmented." -msgstr "" -"Memoria cache a interogărilor este fragmentată într-o proporție " -"considerabilă." +msgstr "Cache-ul interogări este fragmentat într-o proporție considerabilă." #: libraries/advisory_rules.txt:178 #, fuzzy @@ -19497,95 +16683,84 @@ msgstr "" "/ qcache_queries_in_cache" #: libraries/advisory_rules.txt:179 -#, fuzzy, php-format +#, php-format msgid "" "The cache is currently fragmented by %s%% , with 100%% fragmentation meaning " "that the query cache is an alternating pattern of free and used blocks. This " "value should be below 20%%." msgstr "" -"Memoria cache este în prezent fragmentată în procent de %s%%, o fragmentare " -"în procent de 100%% înseamnă că memoria cache a interogărilor este o alocare " -"alternativă de blocuri libere și utilizate. Această valoare ar trebui să fie " -"sub 20%%." +"În prezent, cache-ul este fragmentat în procent de %s%%, din fragmentarea " +"totală de 100%%, înseamnă că cache-ul interogări este un model alternativ de " +"blocuri disponibile și utilizate. Această valoare ar trebui să fie sub 20%%." #: libraries/advisory_rules.txt:181 -#, fuzzy msgid "Query cache low memory prunes" -msgstr "Stergeri datorate insuficienței memoriei cache a interogărilor" +msgstr "Lacune memorie insuficientă cache interogări" #: libraries/advisory_rules.txt:184 -#, fuzzy msgid "" "Cached queries are removed due to low query cache memory from the query " "cache." msgstr "" -"Interogările din memoria cache sunt eliminate datorita unui spațiu " -"disponibil scăzut în memoria cache alocată interogărilor." +"Interogările memorate în cache sunt înlăturate datorită memoriei " +"insuficiente cache interogări din cache-ul alocat interogărilor." #: libraries/advisory_rules.txt:185 -#, fuzzy msgid "" "You might want to increase {query_cache_size}, however keep in mind that the " "overhead of maintaining the cache is likely to increase with its size, so do " "this in small increments and monitor the results." msgstr "" -"Ați putea dori să creșteți valoarea parametrului {query_cache_size}, cu " -"toate acestea țineți minte că efortul de întreținere a memoriei cache este " -"probabil să crească proporțional cu dimensiunea sa, asa că faceți acest " -"lucru în incremente mici și monitorizați rezultatele." +"Poate vrei să mărești {query_cache_size}, totuși reține că efortul de " +"menținere a cache-ului probabil crește odată cu dimensiunea sa, deci fă asta " +"în pași mici și monitorizează rezultatele." #: libraries/advisory_rules.txt:186 -#, fuzzy, php-format +#, php-format msgid "" "The ratio of removed queries to inserted queries is %s%%. The lower this " "value is, the better (This rules firing limit: 0.1%%)" msgstr "" -"Raportul dintre interogările eliminate și cele inserate este %s%%. Cu cât " -"această valoare este mai mica cu atât este mai bine (Limita de activare a " -"regulilor este: 0,1%%)" +"Raportul dintre interogările înlăturate și interogările inserate este de %s%%" +". Cu cât această valoare este mai mică cu atât este mai bine (limita de " +"activare a acestor reguli este: 0,1%%)" #: libraries/advisory_rules.txt:188 -#, fuzzy msgid "Query cache max size" -msgstr "Mărimea maximă a memoriei cache alocată interogărilor" +msgstr "Dimensiune maximă cache interogări" #: libraries/advisory_rules.txt:191 -#, fuzzy msgid "" "The query cache size is above 128 MiB. Big query caches may cause " "significant overhead that is required to maintain the cache." msgstr "" -"Dimensiunea memoriei cache a interogărilor depășește 128 MiB. Dimensiunile " -"mari ale memoriei cache a interogărilor poate provoca încărcări " -"semnificative deoarece este necesar un efort suplimentar pentru a întreține " -"memoria cache." +"Dimensiunea cache interogări depășește 128 MiO. Cache-urile mari de " +"interogări pot genera încărcări semnificative care necesită un efort " +"suplimentar pentru menținerea cache-ului." #: libraries/advisory_rules.txt:192 -#, fuzzy msgid "" "Depending on your environment, it might be performance increasing to reduce " "this value." msgstr "" -"În funcție de mediu, ar putea fi vizibilă o creștere a performanței " +"În funcție de mediu tău, ar putea fi vizibilă o creștere a performanței la " "reducerea acestei valori." #: libraries/advisory_rules.txt:193 -#, fuzzy, php-format +#, php-format msgid "Current query cache size: %s" -msgstr "Dimensiune curentă a memoriei cache a interogărilor: %s" +msgstr "Dimensiune actuală cache interogări: %s" #: libraries/advisory_rules.txt:195 -#, fuzzy msgid "Query cache min result size" -msgstr "Dimensiunea minimă a rezultatelor în memoria cache a interogărilor" +msgstr "Dimensiune minimă rezultate cache interogări" #: libraries/advisory_rules.txt:198 -#, fuzzy msgid "" "The max size of the result set in the query cache is the default of 1 MiB." msgstr "" -"Dimensiunea maximă a setului rezultat în memoria cache de interogare este " -"implicit de 1 MiB." +"Implicit, dimensiunea maximă a setului de rezultate în cache interogări este " +"de 1 MiO." #: libraries/advisory_rules.txt:199 #, fuzzy @@ -19611,62 +16786,51 @@ msgstr "" "valorii parametrului {query_cache_limit} ar putea reduce eficiența." #: libraries/advisory_rules.txt:200 -#, fuzzy msgid "query_cache_limit is set to 1 MiB" -msgstr "valoarea parametrului query_cache_limit este setata la 1 MiB" +msgstr "query_cache_limit este setat la 1 MiO" #: libraries/advisory_rules.txt:204 -#, fuzzy msgid "Percentage of sorts that cause temporary tables" -msgstr "Procentul de sortări care provoaca generarea de tabele temporare" +msgstr "Procentul de sortări care generează tabele temporare" #: libraries/advisory_rules.txt:207 libraries/advisory_rules.txt:214 -#, fuzzy msgid "Too many sorts are causing temporary tables." -msgstr "Prea multe sortări cauzează crearea de tabele temporare." +msgstr "Prea multe sortări generează tabele temporare." #: libraries/advisory_rules.txt:208 libraries/advisory_rules.txt:215 -#, fuzzy -#| msgid "" -#| "Consider increasing sort_buffer_size and/or read_rnd_buffer_size, " -#| "depending on your system memory limits" msgid "" "Consider increasing {sort_buffer_size} and/or {read_rnd_buffer_size}, " "depending on your system memory limits." msgstr "" -"Luaţi în considerare creşterea valorilor parametrilor sort_buffer_size şi/" -"sau read_rnd_buffer_size, în funcţie de limitele memoriei sistemului " -"dumneavoastră" +"Ia în considerare creșterea {sort_buffer_size} și/sau {read_rnd_buffer_size}" +", în funcție de limitele memoriei sistemului tău." #: libraries/advisory_rules.txt:209 -#, fuzzy, php-format +#, php-format msgid "" "%s%% of all sorts cause temporary tables, this value should be lower than " "10%%." msgstr "" -"%s%% din sortări au generat tabele temporare, această valoare ar trebui să " +"%s%% din sortări generează tabele temporare, această valoare ar trebui să " "fie mai mică de 10%%." #: libraries/advisory_rules.txt:211 -#, fuzzy msgid "Rate of sorts that cause temporary tables" -msgstr "Rata de sortări care au generat tabele temporare" +msgstr "Rata de sortări care generează tabele temporare" #: libraries/advisory_rules.txt:216 -#, fuzzy, php-format +#, php-format msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." msgstr "" -"Media de tabele temporare: %s, această valoare ar trebui să fie mai mică de " -"1 oră." +"Medie tabele temporare: %s, această valoare ar trebui să fie mai mică decât " +"1 pe oră." #: libraries/advisory_rules.txt:218 -#, fuzzy msgid "Sort rows" -msgstr "Sortare (ordonare) rânduri" +msgstr "Sortează rânduri" #: libraries/advisory_rules.txt:221 -#, fuzzy msgid "There are lots of rows being sorted." msgstr "Există o mulțime de rânduri sortate." @@ -19681,17 +16845,15 @@ msgstr "" #: libraries/advisory_rules.txt:223 #, php-format msgid "Sorted rows average: %s" -msgstr "" +msgstr "Medie rânduri sortate: %s" #: libraries/advisory_rules.txt:226 -#, fuzzy msgid "Rate of joins without indexes" -msgstr "Tabelele urmărite" +msgstr "Rată de asocieri fără indexuri" #: libraries/advisory_rules.txt:229 -#, fuzzy msgid "There are too many joins without indexes." -msgstr "Tabelele urmărite" +msgstr "Există prea multe asocieri fără indexuri." #: libraries/advisory_rules.txt:230 msgid "" @@ -19700,21 +16862,19 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:231 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" -msgstr "Sortare Mărime tampon" +msgstr "" +"Medie asocieri tabel: %s, această valoare ar trebui să fie mai mică decât 1 " +"pe oră" #: libraries/advisory_rules.txt:233 -#, fuzzy msgid "Rate of reading first index entry" -msgstr "Tabelele urmărite" +msgstr "Rată de citire a primei intrări de index" #: libraries/advisory_rules.txt:236 -#, fuzzy -#| msgid "The number of pending log file fsyncs." msgid "The rate of reading the first index entry is high." -msgstr "The number of pending log file fsyncs." +msgstr "Rata de citire a primei intrări de index este mare." #: libraries/advisory_rules.txt:237 msgid "" @@ -19727,22 +16887,19 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:238 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "Index scans average: %s, this value should be less than 1 per hour" -msgstr "Sortare Mărime tampon" +msgstr "" +"Medie scanări index: %s, această valoare ar trebui să fie mai mică decât 1 " +"pe oră" #: libraries/advisory_rules.txt:240 -#, fuzzy -#| msgid "Format of imported file" msgid "Rate of reading fixed position" -msgstr "Formatul fișierului importat" +msgstr "Rată de citire din poziție fixă" #: libraries/advisory_rules.txt:243 -#, fuzzy -#| msgid "The number of pending log file fsyncs." msgid "The rate of reading data from a fixed position is high." -msgstr "The number of pending log file fsyncs." +msgstr "Rata de citire a datelor dintr-o poziție fixă este mare." #: libraries/advisory_rules.txt:244 msgid "" @@ -19757,39 +16914,40 @@ msgid "" "Rate of reading fixed position average: %s, this value should be less than 1 " "per hour" msgstr "" +"Medie rată de citire din poziție fixă: %s, această valoare ar trebui să fie " +"mai mică decât 1 pe oră" #: libraries/advisory_rules.txt:247 -#, fuzzy -#| msgid "Create table" msgid "Rate of reading next table row" -msgstr "Creare tabel" +msgstr "Rată de citire a următorului rând de tabel" #: libraries/advisory_rules.txt:250 -#, fuzzy -#| msgid "The current number of pending writes." msgid "The rate of reading the next table row is high." -msgstr "The current number of pending writes." +msgstr "Rata de citire a următorului rând de tabel este mare." #: libraries/advisory_rules.txt:251 msgid "" "This indicates that many queries are doing full table scans. Add indexes " "where applicable." msgstr "" +"Aceasta indică că multe interogări fac scanări complete de tabele. Adaugă " +"indexuri, dacă este cazul." #: libraries/advisory_rules.txt:252 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" -msgstr "Sortare Mărime tampon" +msgstr "" +"Rată de citire a următorului rând de tabel: %s, această valoare ar trebui să " +"fie mai mică decât 1 pe oră" #: libraries/advisory_rules.txt:255 msgid "Different tmp_table_size and max_heap_table_size" -msgstr "" +msgstr "Diferite tmp_table_size și max_heap_table_size" #: libraries/advisory_rules.txt:258 msgid "{tmp_table_size} and {max_heap_table_size} are not the same." -msgstr "" +msgstr "{tmp_table_size} și {max_heap_table_size} nu sunt identice." #: libraries/advisory_rules.txt:259 msgid "" @@ -19802,19 +16960,18 @@ msgstr "" #: libraries/advisory_rules.txt:260 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" -msgstr "" +msgstr "Valorile curente sunt tmp_table_size: %s, max_heap_table_size: %s" #: libraries/advisory_rules.txt:262 -#, fuzzy -#| msgid "Format of imported file" msgid "Percentage of temp tables on disk" -msgstr "Formatul fișierului importat" +msgstr "Procentul de tabele temporare pe disc" #: libraries/advisory_rules.txt:265 libraries/advisory_rules.txt:272 msgid "" "Many temporary tables are being written to disk instead of being kept in " "memory." msgstr "" +"Multe tabele temporare sunt scrise pe disc în loc să fie păstrate în memorie." #: libraries/advisory_rules.txt:266 msgid "" @@ -19833,12 +16990,12 @@ msgid "" "%s%% of all temporary tables are being written to disk, this value should be " "below 25%%" msgstr "" +"%s%% din toate tabelele temporare sunt scrise pe disc, această valoare ar " +"trebui să fie sub 25%%" #: libraries/advisory_rules.txt:269 -#, fuzzy -#| msgid "%s table(s)" msgid "Temp disk rate" -msgstr "%s tabele" +msgstr "Rată temporare pe disc" #: libraries/advisory_rules.txt:273 msgid "" @@ -19857,40 +17014,40 @@ msgid "" "Rate of temporary tables being written to disk: %s, this value should be " "less than 1 per hour" msgstr "" +"Rată de tabele temporare care sunt scrise pe disc: %s, această valoare ar " +"trebui să fie mai mică decât 1 pe oră" #: libraries/advisory_rules.txt:278 -#, fuzzy -#| msgid "Sort buffer size" msgid "MyISAM key buffer size" -msgstr "Sortare Mărime tampon" +msgstr "Dimensiune tampon cheie MyISAM" #: libraries/advisory_rules.txt:281 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" +"Tamponul cheii nu este inițializat. Niciun index MyISAM nu va fi memorat în " +"cache." #: libraries/advisory_rules.txt:282 msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." msgstr "" +"Setează {key_buffer_size} în funcție de dimensiunea indexurilor tale MyISAM. " +"64 M este un început bun." #: libraries/advisory_rules.txt:283 -#, fuzzy -#| msgid "Sort buffer size" msgid "key_buffer_size is 0" -msgstr "Sortare Mărime tampon" +msgstr "key_buffer_size este 0" #: libraries/advisory_rules.txt:285 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "Max %% MyISAM key buffer ever used" -msgstr "Sortare Mărime tampon" +msgstr "%% maxim tampon cheie MyISAM folosit vreodată" #: libraries/advisory_rules.txt:288 libraries/advisory_rules.txt:296 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "MyISAM key buffer (index cache) %% used is low." -msgstr "Sortare Mărime tampon" +msgstr "Tamponul cheie MyISAM folosit (cache index) %% este mic." #: libraries/advisory_rules.txt:289 libraries/advisory_rules.txt:297 msgid "" @@ -19898,246 +17055,241 @@ msgid "" "tables to see if indexes have been removed, or examine queries and " "expectations about what indexes are being used." msgstr "" +"Poate vrei să reduci dimensiunea {key_buffer_size}, să-ți reexaminezi " +"tabelele pentru a vedea dacă indexurile au fost înlăturate sau să examinezi " +"interogările și așteptările cu privire la indexurile care sunt utilizate." #: libraries/advisory_rules.txt:290 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" -msgstr "Sortare Mărime tampon" +msgstr "" +"%% tampon maxim cheie MyISAM folosit vreodată: %s%%, această valoare ar " +"trebui să fie mai mare de 95%%" #: libraries/advisory_rules.txt:293 -#, fuzzy -#| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" -msgstr "Sortare Mărime tampon" +msgstr "Procentul tamponului cheie MyISAM folosit" #: libraries/advisory_rules.txt:298 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" -msgstr "Sortare Mărime tampon" +msgstr "" +"%% tampon cheie MyISAM folosit: %s%%, această valoare trebuie să fie mai " +"mare de 95%%" #: libraries/advisory_rules.txt:300 -#, fuzzy msgid "Percentage of index reads from memory" -msgstr "Afișare comandă întreagă" +msgstr "Procentul de citiri index din memorie" #: libraries/advisory_rules.txt:303 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." -msgstr "" +msgstr "%% de indexuri care folosește tamponul cheii MyISAM este mic." #: libraries/advisory_rules.txt:304 msgid "You may need to increase {key_buffer_size}." -msgstr "" +msgstr "Probabil trebuie să mărești {key_buffer_size}." #: libraries/advisory_rules.txt:305 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" -msgstr "Sortare Mărime tampon" +msgstr "" +"Citiri index din memorie: %s%%, această valoare trebuie să fie mai mare de " +"95%%" #: libraries/advisory_rules.txt:309 -#, fuzzy -#| msgid "Create table" msgid "Rate of table open" -msgstr "Creare tabel" +msgstr "Rată de deschidere tabel" #: libraries/advisory_rules.txt:312 -#, fuzzy -#| msgid "The current number of pending writes." msgid "The rate of opening tables is high." -msgstr "The current number of pending writes." +msgstr "Rata de deschidere a tabelelor este mare." #: libraries/advisory_rules.txt:313 msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." msgstr "" +"Deschiderea tabelelor necesită intrări/ieșiri pe disc, care sunt " +"costisitoare. Creșterea {table_open_cache} ar putea evita acest lucru." #: libraries/advisory_rules.txt:314 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" -msgstr "Sortare Mărime tampon" +msgstr "" +"Rată tabele deschise: %s, această valoare ar trebui să fie mai mică decât 10 " +"pe oră" #: libraries/advisory_rules.txt:316 -#, fuzzy -#| msgid "Format of imported file" msgid "Percentage of used open files limit" -msgstr "Formatul fișierului importat" +msgstr "Procentul limitei de fișiere deschise folosite" #: libraries/advisory_rules.txt:319 msgid "" "The number of open files is approaching the max number of open files. You " "may get a \"Too many open files\" error." msgstr "" +"Numărul de fișiere deschise se apropie de numărul maxim de fișiere care pot " +"fi deschise. Probabil vei primi o eroare „Prea multe fișiere deschise”." #: libraries/advisory_rules.txt:320 libraries/advisory_rules.txt:327 msgid "" "Consider increasing {open_files_limit}, and check the error log when " "restarting after changing {open_files_limit}." msgstr "" +"Ia în considerare creșterea {open_files_limit} și verifică jurnalul de erori " +"când repornești, după modificarea {open_files_limit}." #: libraries/advisory_rules.txt:321 #, php-format msgid "" "The number of opened files is at %s%% of the limit. It should be below 85%%" msgstr "" +"Numărul de fișiere deschise este %s%% din limită. Ar trebui să fie sub 85%%" #: libraries/advisory_rules.txt:323 -#, fuzzy -#| msgid "Format of imported file" msgid "Rate of open files" -msgstr "Formatul fișierului importat" +msgstr "Rată de deschidere fișiere" #: libraries/advisory_rules.txt:326 -#, fuzzy -#| msgid "The number of pending log file fsyncs." msgid "The rate of opening files is high." -msgstr "The number of pending log file fsyncs." +msgstr "Rata de deschidere fișiere este mare." #: libraries/advisory_rules.txt:328 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" -msgstr "Sortare Mărime tampon" +msgstr "" +"Rată fișiere deschise: %s, această valoare ar trebui să fie mai mică decât 5 " +"pe oră" #: libraries/advisory_rules.txt:330 -#, fuzzy, php-format -#| msgid "Create table on database %s" +#, php-format msgid "Immediate table locks %%" -msgstr "Creează tabel nou în baza de date %s" +msgstr "Blocări de tabel imediate %%" #: libraries/advisory_rules.txt:333 libraries/advisory_rules.txt:340 -#, fuzzy -#| msgid "The number of times that a table lock was acquired immediately." msgid "Too many table locks were not granted immediately." -msgstr "The number of times that a table lock was acquired immediately." +msgstr "Prea multe blocări de tabel nu au fost acordate imediat." #: libraries/advisory_rules.txt:334 libraries/advisory_rules.txt:341 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "" +"Optimizează interogările și/sau folosește InnoDB pentru a reduce așteptarea " +"blocării." #: libraries/advisory_rules.txt:335 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "Sortare Mărime tampon" +msgstr "" +"Blocări de tabel imediate: %s%%, această valoare ar trebui să fie peste 95%%" #: libraries/advisory_rules.txt:337 msgid "Table lock wait rate" -msgstr "" +msgstr "Rată de așteptare blocare tabel" #: libraries/advisory_rules.txt:342 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" -msgstr "Sortare Mărime tampon" +msgstr "" +"Rată de așteptare blocare tabel:%s, această valoare ar trebui să fie mai " +"mică decât 1 pe oră" #: libraries/advisory_rules.txt:344 -#, fuzzy -#| msgid "Key cache" msgid "Thread cache" -msgstr "Key cache" +msgstr "Cache fir de execuție" #: libraries/advisory_rules.txt:347 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" +"Cache fire de execuție este dezactivat, rezultând mai multe eforturi pentru " +"conexiunile noi la MySQL." #: libraries/advisory_rules.txt:348 msgid "Enable the thread cache by setting {thread_cache_size} > 0." -msgstr "" +msgstr "Activează cache-ul firului de execuție setând {thread_cache_size} > 0." #: libraries/advisory_rules.txt:349 -#, fuzzy -#| msgid "Tracking is not active." msgid "The thread cache is set to 0" -msgstr "Monitorizarea nu este activată" +msgstr "Cache-ul firului de execuție este setat la 0" #: libraries/advisory_rules.txt:351 -#, fuzzy, php-format -#| msgid "Tracking is not active." +#, php-format msgid "Thread cache hit rate %%" -msgstr "Monitorizarea nu este activată" +msgstr "Rată de succes cache fire de execuție %%" #: libraries/advisory_rules.txt:354 -#, fuzzy -#| msgid "Tracking is not active." msgid "Thread cache is not efficient." -msgstr "Monitorizarea nu este activată" +msgstr "Cache-ul firului de execuție nu este eficient." #: libraries/advisory_rules.txt:355 msgid "Increase {thread_cache_size}." -msgstr "" +msgstr "Mărește {thread_cache_size}." #: libraries/advisory_rules.txt:356 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" -msgstr "Sortare Mărime tampon" +msgstr "" +"Rată de succes cache fire de execuție: %s%%, această valoare ar trebui să " +"fie peste 80%%" #: libraries/advisory_rules.txt:358 -#, fuzzy -#| msgid "The number of threads that are not sleeping." msgid "Threads that are slow to launch" -msgstr "The number of threads that are not sleeping." +msgstr "Fire de execuție care sunt lente la lansare" #: libraries/advisory_rules.txt:361 -#, fuzzy -#| msgid "The number of threads that are not sleeping." msgid "There are too many threads that are slow to launch." -msgstr "The number of threads that are not sleeping." +msgstr "Există prea multe fire de execuție care sunt lente la lansare." #: libraries/advisory_rules.txt:362 msgid "" "This generally happens in case of general system overload as it is pretty " "simple operations. You might want to monitor your system load carefully." msgstr "" +"Acest lucru se întâmplă în general în cazul supraîncărcării generale a " +"sistemului, deoarece operațiile sunt destul de simple. Probabil vrei să-ți " +"monitorizezi încărcarea sistemului cu mai multă atenție." #: libraries/advisory_rules.txt:363 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "" +"%s fir de execuție a durat mai mult de %s secunde pentru a începe, ar trebui " +"să fie 0" #: libraries/advisory_rules.txt:365 msgid "Slow launch time" -msgstr "" +msgstr "Durată lentă de lansare" #: libraries/advisory_rules.txt:368 -#, fuzzy -#| msgid "long_query_time is set to %d second(s)." msgid "Slow_launch_time is above 2s." -msgstr "long_query_time este setat la %d secunde." +msgstr "Slow_launch_time este de peste 2 sec." #: libraries/advisory_rules.txt:369 -#, fuzzy -#| msgid "The number of threads that are not sleeping." msgid "" "Set {slow_launch_time} to 1s or 2s to correctly count threads that are slow " "to launch." -msgstr "The number of threads that are not sleeping." +msgstr "" +"Setează {slow_launch_time} la o sec. sau 2 sec. pentru a număra corect " +"firele de execuție care sunt lente la lansare." #: libraries/advisory_rules.txt:370 -#, fuzzy, php-format -#| msgid "long_query_time is set to %d second(s)." +#, php-format msgid "slow_launch_time is set to %s" -msgstr "long_query_time este setat la %d secunde." +msgstr "long_query_time este setat la %s" #: libraries/advisory_rules.txt:374 -#, fuzzy -#| msgid "max. concurrent connections" msgid "Percentage of used connections" -msgstr "conexiuni concurente (maxim)" +msgstr "Procent de conexiuni folosite" #: libraries/advisory_rules.txt:377 msgid "" "The maximum amount of used connections is getting close to the value of " "{max_connections}." msgstr "" +"Suma maximă de conexiuni folosite se apropie de valoarea {max_connections}." #: libraries/advisory_rules.txt:378 msgid "" @@ -20151,18 +17303,16 @@ msgstr "" msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" msgstr "" +"Max_used_connections este de %s%% din max_connections, ar trebui să fie sub " +"80%%" #: libraries/advisory_rules.txt:381 -#, fuzzy -#| msgid "max. concurrent connections" msgid "Percentage of aborted connections" -msgstr "conexiuni concurente (maxim)" +msgstr "Procent de conexiuni anulate" #: libraries/advisory_rules.txt:384 libraries/advisory_rules.txt:391 -#, fuzzy -#| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." -msgstr "Permite crearea de tabele temporare." +msgstr "Prea multe conexiuni sunt anulate." #: libraries/advisory_rules.txt:385 libraries/advisory_rules.txt:392 msgid "" @@ -20170,35 +17320,36 @@ msgid "" "\"https://www.percona.com/blog/2008/08/23/how-to-track-down-the-source-of-" "aborted_connects/\">This article might help you track down the source." msgstr "" +"De obicei, conexiunile sunt anulate când nu pot fi autorizate. Acest articol te " +"poate ajuta să urmărești sursa." #: libraries/advisory_rules.txt:386 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" +"%s%% din toate conexiunile anulate. Această valoare trebuie să fie sub 1%%" #: libraries/advisory_rules.txt:388 -#, fuzzy -#| msgid "max. concurrent connections" msgid "Rate of aborted connections" -msgstr "conexiuni concurente (maxim)" +msgstr "Rată de conexiuni anulate" #: libraries/advisory_rules.txt:393 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" msgstr "" +"Rata de conexiuni anulate este de %s, această valoare ar trebui să fie mai " +"mică decât 1 pe oră" #: libraries/advisory_rules.txt:395 -#, fuzzy -#| msgid "Format of imported file" msgid "Percentage of aborted clients" -msgstr "Formatul fișierului importat" +msgstr "Procent de clienți anulați" #: libraries/advisory_rules.txt:398 libraries/advisory_rules.txt:405 -#, fuzzy -#| msgid "Allows creating temporary tables." msgid "Too many clients are aborted." -msgstr "Permite crearea de tabele temporare." +msgstr "Prea mulți clienți sunt anulați." #: libraries/advisory_rules.txt:399 libraries/advisory_rules.txt:406 msgid "" @@ -20206,53 +17357,54 @@ msgid "" "MySQL properly. This can be due to network issues or code not closing a " "database handler properly. Check your network and code." msgstr "" +"De obicei, clienții sunt anulați când nu își închid corect conexiunea la " +"MySQL. Acest lucru se datorează problemelor de rețea sau codului care nu " +"închide corect gestionarul bazei de date. Verifică-ți rețeaua și codul." #: libraries/advisory_rules.txt:400 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" +"%s%% din toți clienții sunt anulați. Această valoare ar trebui să fie sub 2%%" #: libraries/advisory_rules.txt:402 -#, fuzzy msgid "Rate of aborted clients" -msgstr "Rata de clienți abandonați" +msgstr "Rată de clienți anulați" #: libraries/advisory_rules.txt:407 -#, fuzzy, php-format +#, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" -"Rata de abandon a clientului este la %s, această valoare trebuie să fie mai " -"mică de 1 pe oră" +"Rata de clienți anulați este de %s, această valoare ar trebui să fie mai " +"mică decât 1 pe oră" #: libraries/advisory_rules.txt:411 msgid "Is InnoDB disabled?" -msgstr "" +msgstr "Este InnoDB dizactivat?" #: libraries/advisory_rules.txt:414 -#, fuzzy msgid "You do not have InnoDB enabled." -msgstr "Nu aveţi InnoDB activat." +msgstr "Nu ai InnoDB activat." #: libraries/advisory_rules.txt:415 msgid "InnoDB is usually the better choice for table engines." -msgstr "" +msgstr "De obicei, InnoDB este alegerea cea mai bună pentru motoare de tabele." #: libraries/advisory_rules.txt:416 msgid "have_innodb is set to 'value'" -msgstr "" +msgstr "have_innodb este setat la „valoare”" #: libraries/advisory_rules.txt:418 -#, fuzzy msgid "InnoDB log size" -msgstr "Dimensiunea jurnalului InnoDB" +msgstr "Dimensiune jurnal InnoDB" #: libraries/advisory_rules.txt:421 -#, fuzzy -#| msgid "The number writes done to the InnoDB buffer pool." msgid "" "The InnoDB log file size is not an appropriate size, in relation to the " "InnoDB buffer pool." -msgstr "The number writes done to the InnoDB buffer pool." +msgstr "" +"Dimensiunea fișierului jurnal InnoDB nu este o dimensiune adecvată, în " +"raport cu buffer pool InnoDB." #: libraries/advisory_rules.txt:422 #, php-format @@ -20269,21 +17421,21 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:423 -#, fuzzy, php-format -#| msgid "The number writes done to the InnoDB buffer pool." +#, php-format msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " "it should not be below 20%%" -msgstr "The number writes done to the InnoDB buffer pool." +msgstr "" +"Dimensiunea jurnalului tău InnoDB este de %s%% în raport cu dimensiunea " +"buffer pool InnoDB, nu ar trebui să fie sub 20%%" #: libraries/advisory_rules.txt:425 -#, fuzzy msgid "Max InnoDB log size" -msgstr "Mărimea maximă a înregistrării InnoDB" +msgstr "Dimensiune maximă jurnal InnoDB" #: libraries/advisory_rules.txt:428 msgid "The InnoDB log file size is inadequately large." -msgstr "" +msgstr "Dimensiunea fișierului jurnal InnoDB este insuficient de mare." #: libraries/advisory_rules.txt:429 #, fuzzy, php-format @@ -20323,17 +17475,15 @@ msgstr "" #: libraries/advisory_rules.txt:430 #, php-format msgid "Your absolute InnoDB log size is %s MiB" -msgstr "" +msgstr "Dimensiunea absolută a jurnalului tău InnoDB este de %s MiO" #: libraries/advisory_rules.txt:432 -#, fuzzy msgid "InnoDB buffer pool size" -msgstr "Mărimea buffer-ului pool al InnoDB" +msgstr "Dimensiune buffer pool InnoDB" #: libraries/advisory_rules.txt:435 -#, fuzzy msgid "Your InnoDB buffer pool is fairly small." -msgstr "Buffer-ul pentru InnoDB este destul de mic." +msgstr "Buffer pool InnoDB este destul de mic." #: libraries/advisory_rules.txt:436 #, php-format @@ -20349,6 +17499,16 @@ msgid "" "\"https://www.percona.com/blog/2007/11/03/choosing-innodb_buffer_pool_size/" "\">this article" msgstr "" +"Buffer pool InnoDB are un impact profund asupra performanței pentru tabelele " +"InnoDB. Alocă toată memoria rămasă în acest tampon. Pentru serverele de bază " +"de date care folosesc exclusiv InnoDB ca motor de stocare și nu a alte " +"servicii care rulează (de exemplu, un server web), poți seta o valoare mare, " +"cum ar fi 80%% din memoria disponibilă. În caz contrar, trebuie să evaluezi " +"cu atenție consumul de memorie al celorlalte servicii și tabelele non-InnoDB " +"și să setezi această variabilă în consecință. Dacă este setată o valoare " +"prea mare, sistemul tău va începe să se schimbe, ceea ce scade semnificativ " +"performanța. De asemenea, vezi acest articol" #: libraries/advisory_rules.txt:437 #, php-format @@ -20358,33 +17518,32 @@ msgid "" "perfectly adequate for your system if you don't have much InnoDB tables or " "other services running on the same machine." msgstr "" +"În prezent folosești %s%% din memorie pentru buffer pool InnoDB. Această " +"regulă se declanșează dacă aloci mai puțin de 60%%, totuși acest lucru ar " +"putea fi adecvat în totalitate pentru sistemul tău dacă nu ai prea multe " +"tabele InnoDB sau alte servicii care rulează pe aceeași mașină." #: libraries/advisory_rules.txt:441 -#, fuzzy msgid "MyISAM concurrent inserts" -msgstr "inserări concurente MyISAM" +msgstr "Inserări concurente MyISAM" #: libraries/advisory_rules.txt:444 -#, fuzzy msgid "Enable {concurrent_insert} by setting it to 1" msgstr "Activează {concurrent_insert} setându-i valoarea la 1" #: libraries/advisory_rules.txt:445 -#, fuzzy msgid "" "Setting {concurrent_insert} to 1 reduces contention between readers and " "writers for a given table. See also MySQL Documentation" msgstr "" -"Setând {concurrent_insert} la 1 reduceți conflictele dintre cititori si " -"scriitori pentru o tabelă dată. Vedeți de asemenea " -"Documentația MySQL" +"Setând {concurrent_insert} la 1 reduce disputele între cititori și scriitori " +"pentru un tabel dat. De asemenea, vezi documentația MySQL" #: libraries/advisory_rules.txt:446 -#, fuzzy msgid "concurrent_insert is set to 0" -msgstr "concurrent_insert este setat cu 0" +msgstr "concurrent_insert este setat la 0" #~ msgid "Search results for \"%s\" %s:" #~ msgstr "Caută rezultate pentru \"%s\" %s:" diff --git a/po/ru.po b/po/ru.po index 8ca51742fc..c3b4c5a474 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.8.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2018-02-12 16:30+0100\n" -"PO-Revision-Date: 2018-04-16 18:41+0000\n" -"Last-Translator: Yaron Shahrabani \n" +"PO-Revision-Date: 2018-07-27 08:19+0000\n" +"Last-Translator: Wolterhon \n" "Language-Team: Russian \n" "Language: ru\n" @@ -14,7 +14,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" "4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.0-dev\n" +"X-Generator: Weblate 3.1-dev\n" #: ajax.php:21 ajax.php:50 export.php:203 libraries/classes/Export.php:1100 msgid "Bad type!" @@ -2953,7 +2953,7 @@ msgstr "Секунда" #: js/messages.php:917 msgid "This field is required" -msgstr "Это обязательное поле" +msgstr "Это поле нужно заполнить" #: js/messages.php:918 msgid "Please fix this field" @@ -4820,7 +4820,7 @@ msgstr "Отображать логотип в панели навигации." #: libraries/classes/Config/Descriptions.php:782 msgid "Display logo" -msgstr "Выводить логотип" +msgstr "Показывать логотип" #: libraries/classes/Config/Descriptions.php:784 msgid "URL where logo in the navigation panel will point to." @@ -4828,7 +4828,7 @@ msgstr "URL, на который будет ссылаться логотип в #: libraries/classes/Config/Descriptions.php:786 msgid "Logo link URL" -msgstr "URL ссылка логотипа" +msgstr "Ссылка логотипа" #: libraries/classes/Config/Descriptions.php:789 msgid "" @@ -8308,7 +8308,7 @@ msgstr "Показать" #: libraries/classes/Navigation/NavigationHeader.php:165 msgid "Home" -msgstr "К началу" +msgstr "На главную" #: libraries/classes/Navigation/NavigationHeader.php:173 msgid "Log out" @@ -13891,7 +13891,7 @@ msgstr "Клик" #: libraries/config.values.php:94 msgid "Double click" -msgstr "Двойной клик" +msgstr "Двойное нажатие" #: libraries/config.values.php:98 msgid "key" @@ -15461,7 +15461,7 @@ msgstr "Сделать закладку общедоступной" #: templates/console/display.twig:140 msgid "Set default" -msgstr "Установить изначальное значение" +msgstr "Сбросить настройки" #: templates/console/display.twig:162 msgid "" @@ -16356,7 +16356,7 @@ msgstr "gzip" #: url.php:41 msgid "Taking you to the target site." -msgstr "Переход на целевой сайт." +msgstr "Происходит переадресация." #: user_password.php:35 msgid "You don't have sufficient privileges to be here right now!" @@ -16608,8 +16608,8 @@ msgid "" "Percona documentation is at https://www.percona.com/software/documentation/" msgstr "" -"Документация по Percona находится на https://www.percona.com/software/documentation/" +"Документация Percona находится здесь" #: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" diff --git a/po/th.po b/po/th.po index bb378813b9..304a494ac5 100644 --- a/po/th.po +++ b/po/th.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.8.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2018-02-12 16:30+0100\n" -"PO-Revision-Date: 2018-05-19 17:57+0000\n" -"Last-Translator: Anawin Wongsadit \n" +"PO-Revision-Date: 2018-08-17 10:42+0000\n" +"Last-Translator: Anusuk Sangubon \n" "Language-Team: Thai " "\n" "Language: th\n" @@ -13,7 +13,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 3.0-dev\n" +"X-Generator: Weblate 3.2-dev\n" #: ajax.php:21 ajax.php:50 export.php:203 libraries/classes/Export.php:1100 msgid "Bad type!" @@ -145,7 +145,6 @@ msgstr "ค่าว่าง" #: templates/table/structure/table_structure_header.twig:10 #: templates/table/tracking/structure_snapshot_columns.twig:10 #: templates/columns_definitions/table_fields_definitions.twig:20 -#, fuzzy msgid "Default" msgstr "ค่าเริ่มต้น" @@ -207,7 +206,6 @@ msgstr "คีย์หลัก" #: templates/table/tracking/structure_snapshot_indexes.twig:24 #: templates/table/tracking/structure_snapshot_columns.twig:33 #: templates/table/structure/table_structure_row.twig:25 -#, fuzzy msgid "No" msgstr "ไม่ใช่" @@ -301,8 +299,6 @@ msgstr "ข้อมูล" #: db_export.php:73 libraries/classes/ReplicationGui.php:391 #: templates/database/search/selection_form.twig:32 #: templates/display/export/select_options.twig:4 -#, fuzzy -#| msgid "Select All" msgid "Select all" msgstr "เลือกทั้งหมด" @@ -348,10 +344,8 @@ msgid "Access denied!" msgstr "ไม่อนุญาตให้ใช้งาน" #: db_tracking.php:55 db_tracking.php:80 -#, fuzzy -#| msgid "Chart generated successfully." msgid "Tracking data deleted successfully." -msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว" +msgstr "ลบข้อมูลการติดตามแล้ว" #: db_tracking.php:64 #, php-format diff --git a/po/zh_CN.po b/po/zh_CN.po index 6193765d62..b8bdaeff16 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.8.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2018-02-12 16:30+0100\n" -"PO-Revision-Date: 2018-05-07 00:18+0000\n" -"Last-Translator: Edward FANG \n" +"PO-Revision-Date: 2018-08-02 07:35+0000\n" +"Last-Translator: H Zeng \n" "Language-Team: Chinese (Simplified) \n" "Language: zh_CN\n" @@ -13,7 +13,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 3.0-dev\n" +"X-Generator: Weblate 3.1.1\n" #: ajax.php:21 ajax.php:50 export.php:203 libraries/classes/Export.php:1100 msgid "Bad type!" @@ -610,7 +610,7 @@ msgstr "返回" msgid "" "You were logged out from one server, to logout completely from phpMyAdmin, " "you need to logout from all servers." -msgstr "注销成功, 要完全登出phpMyAdmin, 您需要从所有服务器依次注销." +msgstr "您已从一台服务器退出登录,要从phpMyAdmin完全退出,您需要从所有服务器退出。" #: index.php:193 libraries/classes/Footer.php:75 #: libraries/classes/Plugins/Auth/AuthenticationCookie.php:115 @@ -663,10 +663,8 @@ msgid "Server type:" msgstr "服务器类型:" #: index.php:342 -#, fuzzy -#| msgid "Insecure connection" msgid "Server connection:" -msgstr "非安全连接" +msgstr "服务器连接:" #: index.php:346 libraries/classes/Plugins/Export/ExportLatex.php:223 #: libraries/classes/Plugins/Export/ExportSql.php:704 @@ -820,8 +818,7 @@ msgstr "服务器上运行了 Suhosin。请查看%s文档%s了解可能发生的 msgid "" "The $cfg['TempDir'] (%s) is not accessible. phpMyAdmin is not able to cache " "templates and will be slow because of this." -msgstr "" -"$cfg['TempDir'] (%s) 读取失败且不能建立缓存, phpMyAdmin运行速度将受影响." +msgstr "变量 $cfg['TempDir'] (%s)无法访问。phpMyAdmin无法缓存模板文件,所以会运行缓慢。" #: js/messages.php:43 msgid "Confirm" @@ -1512,22 +1509,16 @@ msgid "Chart" msgstr "图表" #: js/messages.php:295 libraries/classes/Display/Export.php:566 -#, fuzzy -#| msgid "Database" msgctxt "Alias" msgid "Database" msgstr "数据库" #: js/messages.php:296 libraries/classes/Display/Export.php:578 -#, fuzzy -#| msgid "Table" msgctxt "Alias" msgid "Table" msgstr "表" #: js/messages.php:297 libraries/classes/Display/Export.php:589 -#, fuzzy -#| msgid "Column" msgctxt "Alias" msgid "Column" msgstr "字段" @@ -1817,7 +1808,7 @@ msgstr "导出" #: js/messages.php:401 msgid "No routine is exportable. Required privileges may be lacking." -msgstr "可能权限不足,无法输出 routine。" +msgstr "无法导出。可能缺少相应权限。" #: js/messages.php:404 libraries/classes/Rte/Routines.php:760 msgid "ENUM/SET editor" @@ -2597,12 +2588,12 @@ msgstr "强" #: js/messages.php:746 msgid "Timed out waiting for security key activation." -msgstr "" +msgstr "等待安全密钥激活超时。" #: js/messages.php:747 #, php-format msgid "Failed security key activation (%s)." -msgstr "" +msgstr "安全密钥激活失败(%s)。" #: js/messages.php:776 msgctxt "Previous month" @@ -2936,10 +2927,9 @@ msgid "Error" msgstr "错误" #: libraries/classes/Advisor.php:249 -#, fuzzy, php-format -#| msgid "Error while creating PDF:" +#, php-format msgid "Error when evaluating: %s" -msgstr "创建 PDF 时发生错误:" +msgstr "评估时发生错误:%s" #: libraries/classes/Advisor.php:280 #, php-format @@ -3173,168 +3163,120 @@ msgid "Charset" msgstr "字符集" #: libraries/classes/Charsets.php:310 -#, fuzzy -#| msgid "unknown" msgid "Unknown" msgstr "未知" #: libraries/classes/Charsets.php:324 -#, fuzzy -#| msgid "Binary" msgctxt "Collation" msgid "Binary" msgstr "二进制" #: libraries/classes/Charsets.php:336 libraries/classes/Charsets.php:566 -#, fuzzy -#| msgid "Unicode" msgctxt "Collation" msgid "Unicode" msgstr "Unicode" #: libraries/classes/Charsets.php:346 libraries/classes/Charsets.php:517 -#, fuzzy -#| msgid "West European" msgctxt "Collation" msgid "West European" msgstr "西欧" #: libraries/classes/Charsets.php:353 -#, fuzzy -#| msgid "Central European" msgctxt "Collation" msgid "Central European" msgstr "中欧" #: libraries/classes/Charsets.php:358 -#, fuzzy -#| msgid "Russian" msgctxt "Collation" msgid "Russian" msgstr "俄语" #: libraries/classes/Charsets.php:363 -#, fuzzy -#| msgid "Simplified Chinese" msgctxt "Collation" msgid "Simplified Chinese" msgstr "简体中文" #: libraries/classes/Charsets.php:370 libraries/classes/Charsets.php:488 -#, fuzzy -#| msgid "Japanese" msgctxt "Collation" msgid "Japanese" msgstr "日语" #: libraries/classes/Charsets.php:375 -#, fuzzy -#| msgid "Baltic" msgctxt "Collation" msgid "Baltic" msgstr "巴拉克语" #: libraries/classes/Charsets.php:380 -#, fuzzy -#| msgid "Armenian" msgctxt "Collation" msgid "Armenian" msgstr "亚美尼亚语" #: libraries/classes/Charsets.php:383 -#, fuzzy -#| msgid "Traditional Chinese" msgctxt "Collation" msgid "Traditional Chinese" msgstr "繁体中文" #: libraries/classes/Charsets.php:386 -#, fuzzy -#| msgid "Cyrillic" msgctxt "Collation" msgid "Cyrillic" msgstr "西里尔语" #: libraries/classes/Charsets.php:389 -#, fuzzy -#| msgid "Arabic" msgctxt "Collation" msgid "Arabic" msgstr "阿拉伯语" #: libraries/classes/Charsets.php:392 libraries/classes/Charsets.php:503 -#, fuzzy -#| msgid "Korean" msgctxt "Collation" msgid "Korean" msgstr "朝鲜语" #: libraries/classes/Charsets.php:395 -#, fuzzy -#| msgid "Hebrew" msgctxt "Collation" msgid "Hebrew" msgstr "希伯来语" #: libraries/classes/Charsets.php:398 -#, fuzzy -#| msgid "Georgian" msgctxt "Collation" msgid "Georgian" msgstr "乔治亚语" #: libraries/classes/Charsets.php:401 -#, fuzzy -#| msgid "Greek" msgctxt "Collation" msgid "Greek" msgstr "希腊语" #: libraries/classes/Charsets.php:404 -#, fuzzy -#| msgid "Czech-Slovak" msgctxt "Collation" msgid "Czech-Slovak" msgstr "捷克斯洛伐克语" #: libraries/classes/Charsets.php:407 libraries/classes/Charsets.php:558 -#, fuzzy -#| msgid "Ukrainian" msgctxt "Collation" msgid "Ukrainian" msgstr "乌克兰语" #: libraries/classes/Charsets.php:410 libraries/classes/Charsets.php:554 -#, fuzzy -#| msgid "Turkish" msgctxt "Collation" msgid "Turkish" msgstr "土耳其语" #: libraries/classes/Charsets.php:413 libraries/classes/Charsets.php:546 -#, fuzzy -#| msgid "Swedish" msgctxt "Collation" msgid "Swedish" msgstr "瑞典语" #: libraries/classes/Charsets.php:416 libraries/classes/Charsets.php:550 -#, fuzzy -#| msgid "Thai" msgctxt "Collation" msgid "Thai" msgstr "泰语" #: libraries/classes/Charsets.php:419 -#, fuzzy -#| msgid "unknown" msgctxt "Collation" msgid "Unknown" msgstr "未知" #: libraries/classes/Charsets.php:435 -#, fuzzy -#| msgid "Bulgarian" msgctxt "Collation" msgid "Bulgarian" msgstr "保加利亚语" @@ -3345,53 +3287,39 @@ msgid "Chinese" msgstr "中文" #: libraries/classes/Charsets.php:445 -#, fuzzy -#| msgid "Croatian" msgctxt "Collation" msgid "Croatian" msgstr "克罗地亚语" #: libraries/classes/Charsets.php:449 -#, fuzzy -#| msgid "Czech" msgctxt "Collation" msgid "Czech" msgstr "捷克语" #: libraries/classes/Charsets.php:453 -#, fuzzy -#| msgid "Danish" msgctxt "Collation" msgid "Danish" msgstr "丹麦语" #: libraries/classes/Charsets.php:457 -#, fuzzy -#| msgid "English" msgctxt "Collation" msgid "English" msgstr "英语" #: libraries/classes/Charsets.php:461 -#, fuzzy -#| msgid "Esperanto" msgctxt "Collation" msgid "Esperanto" msgstr "世界语" #: libraries/classes/Charsets.php:465 -#, fuzzy -#| msgid "Estonian" msgctxt "Collation" msgid "Estonian" msgstr "爱沙尼亚语" #: libraries/classes/Charsets.php:468 libraries/classes/Charsets.php:585 -#, fuzzy -#| msgid "Data Dictionary" msgctxt "Collation" msgid "German (dictionary order)" -msgstr "数据字典" +msgstr "德语(字典顺序)" #: libraries/classes/Charsets.php:471 libraries/classes/Charsets.php:582 msgctxt "Collation" @@ -3399,15 +3327,11 @@ msgid "German (phone book order)" msgstr "德语(电话簿排序)" #: libraries/classes/Charsets.php:480 -#, fuzzy -#| msgid "Hungarian" msgctxt "Collation" msgid "Hungarian" msgstr "匈牙利语" #: libraries/classes/Charsets.php:484 -#, fuzzy -#| msgid "Icelandic" msgctxt "Collation" msgid "Icelandic" msgstr "冰岛语" @@ -3418,74 +3342,54 @@ msgid "Classical Latin" msgstr "古典拉丁语" #: libraries/classes/Charsets.php:495 -#, fuzzy -#| msgid "Latvian" msgctxt "Collation" msgid "Latvian" msgstr "拉脱维亚语" #: libraries/classes/Charsets.php:499 -#, fuzzy -#| msgid "Lithuanian" msgctxt "Collation" msgid "Lithuanian" msgstr "立陶宛语" #: libraries/classes/Charsets.php:507 -#, fuzzy -#| msgid "Burmese" msgctxt "Collation" msgid "Burmese" msgstr "缅甸语" #: libraries/classes/Charsets.php:510 -#, fuzzy -#| msgid "Persian" msgctxt "Collation" msgid "Persian" msgstr "波斯语" #: libraries/classes/Charsets.php:514 -#, fuzzy -#| msgid "Polish" msgctxt "Collation" msgid "Polish" msgstr "波兰语" #: libraries/classes/Charsets.php:521 -#, fuzzy -#| msgid "Romanian" msgctxt "Collation" msgid "Romanian" msgstr "罗马尼亚语" #: libraries/classes/Charsets.php:525 -#, fuzzy -#| msgid "Sinhalese" msgctxt "Collation" msgid "Sinhalese" msgstr "僧伽罗语" #: libraries/classes/Charsets.php:529 -#, fuzzy -#| msgid "Slovak" msgctxt "Collation" msgid "Slovak" msgstr "斯洛伐克语" #: libraries/classes/Charsets.php:533 -#, fuzzy -#| msgid "Slovenian" msgctxt "Collation" msgid "Slovenian" msgstr "斯洛文尼亚语" #: libraries/classes/Charsets.php:536 libraries/classes/Charsets.php:596 -#, fuzzy -#| msgid "Spanish" msgctxt "Collation" msgid "Spanish (modern)" -msgstr "西班牙语" +msgstr "西班牙语(现代)" #: libraries/classes/Charsets.php:543 libraries/classes/Charsets.php:593 msgctxt "Collation" @@ -3493,50 +3397,36 @@ msgid "Spanish (traditional)" msgstr "西班牙语(传统)" #: libraries/classes/Charsets.php:562 -#, fuzzy -#| msgid "Vietnamese" msgctxt "Collation" msgid "Vietnamese" msgstr "越南语" #: libraries/classes/Charsets.php:629 -#, fuzzy -#| msgid "case-insensitive" msgctxt "Collation variant" msgid "case-insensitive" msgstr "不区分大小写" #: libraries/classes/Charsets.php:632 -#, fuzzy -#| msgid "case-sensitive" msgctxt "Collation variant" msgid "case-sensitive" msgstr "区分大小写" #: libraries/classes/Charsets.php:635 -#, fuzzy -#| msgid "case-insensitive" msgctxt "Collation variant" msgid "accent-insensitive" -msgstr "不区分大小写" +msgstr "不区分重音" #: libraries/classes/Charsets.php:638 -#, fuzzy -#| msgid "case-sensitive" msgctxt "Collation variant" msgid "accent-sensitive" -msgstr "区分大小写" +msgstr "区分重音" #: libraries/classes/Charsets.php:642 -#, fuzzy -#| msgid "multilingual" msgctxt "Collation variant" msgid "multi-level" -msgstr "多语言" +msgstr "多层级" #: libraries/classes/Charsets.php:645 -#, fuzzy -#| msgid "Binary" msgctxt "Collation variant" msgid "binary" msgstr "二进制" @@ -3669,7 +3559,7 @@ msgstr "编辑 CHAR 类型字段" msgid "" "Use user-friendly editor for editing SQL queries (CodeMirror) with syntax " "highlighting and line numbers." -msgstr "启用编辑器行号与代码高亮" +msgstr "使用人性化编辑器编辑SQL查询(CodeMirror),包含语法高亮和行号显示。" #: libraries/classes/Config/Descriptions.php:120 msgid "Enable CodeMirror" @@ -3806,10 +3696,8 @@ msgid "Hide table structure actions" msgstr "隐藏表结构操作" #: libraries/classes/Config/Descriptions.php:195 -#, fuzzy -#| msgid "Default sorting order" msgid "Default transformations for Hex" -msgstr "默认排序" +msgstr "十六进制的默认转换" #: libraries/classes/Config/Descriptions.php:197 #: libraries/classes/Config/Descriptions.php:201 @@ -3823,55 +3711,39 @@ msgstr "默认排序" msgid "" "Values for options list for default transformations. These will be " "overwritten if transformation is filled in at table structure page." -msgstr "" +msgstr "默认转换的选项列表值。如果在表结构页面填写了转换,这些内容将被覆盖。" #: libraries/classes/Config/Descriptions.php:199 -#, fuzzy -#| msgid "Transformation options" msgid "Default transformations for Substring" -msgstr "转换选项" +msgstr "Substring字符串的默认转换" #: libraries/classes/Config/Descriptions.php:203 -#, fuzzy -#| msgid "Default sorting order" msgid "Default transformations for Bool2Text" -msgstr "默认排序" +msgstr "Bool2Text的默认转换" #: libraries/classes/Config/Descriptions.php:207 -#, fuzzy -#| msgid "Default sorting order" msgid "Default transformations for External" -msgstr "默认排序" +msgstr "External的默认转换" #: libraries/classes/Config/Descriptions.php:211 -#, fuzzy -#| msgid "Transformation options" msgid "Default transformations for PreApPend" -msgstr "转换选项" +msgstr "PreApPend的默认转换" #: libraries/classes/Config/Descriptions.php:215 -#, fuzzy -#| msgid "Default sorting order" msgid "Default transformations for DateFormat" -msgstr "默认排序" +msgstr "DateFormat的默认转换" #: libraries/classes/Config/Descriptions.php:219 -#, fuzzy -#| msgid "Transformation options" msgid "Default transformations for Inline" -msgstr "转换选项" +msgstr "Inline的默认转换" #: libraries/classes/Config/Descriptions.php:223 -#, fuzzy -#| msgid "Transformation options" msgid "Default transformations for TextImageLink" -msgstr "转换选项" +msgstr "TextImageLink的默认转换" #: libraries/classes/Config/Descriptions.php:227 -#, fuzzy -#| msgid "Transformation options" msgid "Default transformations for TextLink" -msgstr "转换选项" +msgstr "TextLink的默认转换" #: libraries/classes/Config/Descriptions.php:232 msgid "Show server listing as a list instead of a drop down." @@ -4048,8 +3920,6 @@ msgstr "MIME 类型" #: libraries/classes/Config/Descriptions.php:314 #: libraries/classes/Config/Descriptions.php:338 #: libraries/classes/Config/Descriptions.php:403 -#, fuzzy -#| msgid "Relations" msgid "Relationships" msgstr "关系" @@ -4499,13 +4369,8 @@ msgid "Console" msgstr "控制台" #: libraries/classes/Config/Descriptions.php:606 -#, fuzzy -#| msgid "" -#| "Enable [a@https://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " -#| "import and export operations." msgid "Enable gzip compression for import and export operations." -msgstr "" -"允许在导入和导出时使用 [a@https://zh.wikipedia.org/wiki/Gzip]gzip[/a] 压缩。" +msgstr "允许在导入和导出时使用 gzip 压缩。" #: libraries/classes/Config/Descriptions.php:610 msgid "GZip" @@ -4764,16 +4629,12 @@ msgid "Show databases navigation as tree" msgstr "以树状显示数据库导航面板" #: libraries/classes/Config/Descriptions.php:772 -#, fuzzy -#| msgid "Navigation panel" msgid "Navigation panel width" -msgstr "导航面板" +msgstr "导航面板宽度" #: libraries/classes/Config/Descriptions.php:774 -#, fuzzy -#| msgid "Show logo in navigation panel." msgid "Set to 0 to collapse navigation panel." -msgstr "在导航面板中显示图示。" +msgstr "设置为0以折叠导航面板。" #: libraries/classes/Config/Descriptions.php:776 msgid "Link with main panel by highlighting the current database or table." @@ -5173,16 +5034,10 @@ msgid "Authentication type" msgstr "认证方式" #: libraries/classes/Config/Descriptions.php:997 -#, fuzzy -#| msgid "" -#| "Leave blank for no [a@https://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" -#| "a] support, suggested: [kbd]pma__bookmark[/kbd]" msgid "" "Leave blank for no [doc@bookmarks@]bookmark[/doc] support, suggested: " "[kbd]pma__bookmark[/kbd]" -msgstr "" -"不使用[a@https://wiki.phpmyadmin.net/pma/bookmark]书签 (外链,英文)[/a]功能请" -"留空,推荐: [kbd]pma__bookmark[/kbd]" +msgstr "不使用[doc@bookmarks@]书签 (外链,英文)[/doc]功能请留空,推荐: [kbd]pma__bookmark[/kbd]" #: libraries/classes/Config/Descriptions.php:1001 msgid "Bookmark table" @@ -5211,17 +5066,10 @@ msgid "Control user password" msgstr "控制用户的密码" #: libraries/classes/Config/Descriptions.php:1017 -#, fuzzy -#| msgid "" -#| "A special MySQL user configured with limited permissions, more " -#| "information available on [a@https://wiki.phpmyadmin.net/pma/" -#| "controluser]wiki[/a]." msgid "" "A special MySQL user configured with limited permissions, more information " "available on [doc@linked-tables]documentation[/doc]." -msgstr "" -"一个特殊的被限制权限的 MySQL 用户,参见 [a@https://wiki.phpmyadmin.net/pma/" -"controluser]wiki (外链,英文)[/a]。" +msgstr "配置了有限权限的特殊MySQL用户,更多信息参见 [doc@linked-tables]文档[/doc]。" #: libraries/classes/Config/Descriptions.php:1021 msgid "Control user" @@ -5253,19 +5101,14 @@ msgid "Hide databases matching regular expression (PCRE)." msgstr "该正则表达式 (PCRE,Perl 兼容) 所匹配的数据库将被隐藏。" #: libraries/classes/Config/Descriptions.php:1041 -#, fuzzy -#| msgid "" -#| "More information on [a@https://sourceforge.net/p/phpmyadmin/" -#| "bugs/2606/]PMA bug tracker[/a] and [a@https://bugs.mysql.com/19588]MySQL " -#| "Bugs[/a]" msgid "" "More information on [a@https://github.com/phpmyadmin/phpmyadmin/" "issues/8970]phpMyAdmin issue tracker[/a] and [a@https://bugs.mysql." "com/19588]MySQL Bugs[/a]" msgstr "" -"参见 [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA 缺陷 (bug) 跟踪系" -"统 (外链,英文)[/a] 和 [a@https://bugs.mysql.com/19588]MySQL 缺陷 (Bugs) (外" -"链,英文)[/a]" +"更多信息参见 [a@https://github.com/phpmyadmin/phpmyadmin/issues/8970]" +"phpMyAdmin问题跟踪系统 (外链,英文)[/a] 和 [a@https://bugs.mysql.com/19588]MySQL 缺陷 " +"(Bugs) (外链,英文)[/a]" #: libraries/classes/Config/Descriptions.php:1045 msgid "Disable use of INFORMATION_SCHEMA" @@ -5328,20 +5171,14 @@ msgid "" msgstr "不使用导出模板功能请留空,推荐: [kbd]pma__export_templates[/kbd]。" #: libraries/classes/Config/Descriptions.php:1083 -#, fuzzy -#| msgid "Textarea columns" msgid "Central columns table" -msgstr "中央框列" +msgstr "中央框列表格" #: libraries/classes/Config/Descriptions.php:1086 -#, fuzzy -#| msgid "" -#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" -#| "kbd]" msgid "" "Leave blank for no central columns support, suggested: " "[kbd]pma__central_columns[/kbd]." -msgstr "不使用 中央框列功能请留空,推荐: [kbd]pma__central_columns[/kbd]" +msgstr "不使用中央框列功能请留空,推荐: [kbd]pma__central_columns[/kbd]。" #: libraries/classes/Config/Descriptions.php:1091 msgid "" @@ -5375,18 +5212,13 @@ msgid "PDF schema: pages table" msgstr "PDF 大纲: 数据表页" #: libraries/classes/Config/Descriptions.php:1107 -#, fuzzy -#| msgid "" -#| "Database used for relations, bookmarks, and PDF features. See [a@https://" -#| "wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave " -#| "blank for no support. Suggested: [kbd]phpmyadmin[/kbd]." msgid "" "Database used for relations, bookmarks, and PDF features. See [doc@linked-" "tables]pmadb[/doc] for complete information. Leave blank for no support. " "Suggested: [kbd]phpmyadmin[/kbd]." msgstr "" -"关系、书签、PDF 功能所用的数据库。参见 [a@https://wiki.phpmyadmin.net/pma/" -"pmadb]pmadb (外链,英文)[/a]。不使用请留空。推荐: [kbd]phpmyadmin[/kbd]。" +"关系、书签、PDF 功能所用的数据库。参见 [doc@linked-tables]pmadb (外链,英文)[/doc]。不使用请留空。推荐: " +"[kbd]phpmyadmin[/kbd]。" #: libraries/classes/Config/Descriptions.php:1112 #: templates/server/databases/create.twig:21 @@ -5422,31 +5254,20 @@ msgid "Favorites table" msgstr "收藏的表" #: libraries/classes/Config/Descriptions.php:1133 -#, fuzzy -#| msgid "" -#| "Leave blank for no [a@https://wiki.phpmyadmin.net/pma/relation]relation-" -#| "links[/a] support, suggested: [kbd]pma__relation[/kbd]." msgid "" "Leave blank for no [doc@relations@]relation-links[/doc] support, suggested: " "[kbd]pma__relation[/kbd]." msgstr "" -"不使用[a@https://wiki.phpmyadmin.net/pma/relation]关系链接 (外链,英文)[/a]功" -"能请留空,推荐: [kbd]pma__relation[/kbd]。" +"不使用[doc@relations@]关系链接 (外链,英文)[/doc]功能请留空,推荐: [kbd]pma__relation[/kbd]。" #: libraries/classes/Config/Descriptions.php:1138 msgid "Relation table" msgstr "关系表" #: libraries/classes/Config/Descriptions.php:1141 -#, fuzzy -#| msgid "" -#| "See [a@https://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " -#| "types[/a] for an example." msgid "" "See [doc@authentication-modes]authentication types[/doc] for an example." -msgstr "" -"参见[a@https://wiki.phpmyadmin.net/pma/auth_types#signon]认证方式 (外链,英" -"文)[/a]中的例子。" +msgstr "参见[doc@authentication-modes]认证方式 (外链,英文)[/doc]中的例子。" #: libraries/classes/Config/Descriptions.php:1145 msgid "Signon session name" @@ -5624,10 +5445,8 @@ msgid "Verbose name of this server" msgstr "服务器名称" #: libraries/classes/Config/Descriptions.php:1255 -#, fuzzy -#| msgid "Whether a user should be displayed a \"show all (rows)\" button" msgid "Whether a user should be displayed a \"show all (rows)\" button." -msgstr "设置是否给用户显示一个 \"显示所有 (记录)\" 的按钮." +msgstr "设置是否给用户显示一个 \"显示所有 (记录)\" 的按钮。" #: libraries/classes/Config/Descriptions.php:1257 msgid "Allow to display all the rows" @@ -5685,16 +5504,12 @@ msgid "Show last check timestamp" msgstr "显示最近检查时间" #: libraries/classes/Config/Descriptions.php:1285 -#, fuzzy -#| msgid "Show or hide a column displaying the comments for all tables." msgid "Show or hide a column displaying the charset for all tables." -msgstr "显示或隐藏所有表的备注列。" +msgstr "显示或隐藏所有表的字符集。" #: libraries/classes/Config/Descriptions.php:1287 -#, fuzzy -#| msgid "Show table comments" msgid "Show table charset" -msgstr "显示表备注" +msgstr "显示表字符集" #: libraries/classes/Config/Descriptions.php:1290 msgid "" @@ -5723,16 +5538,10 @@ msgid "Show hint" msgstr "显示提示" #: libraries/classes/Config/Descriptions.php:1305 -#, fuzzy -#| msgid "" -#| "Shows link to [a@https://secure.php.net/manual/function.phpinfo." -#| "php]phpinfo()[/a] output." msgid "" "Shows link to [a@https://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." -msgstr "" -"显示 [a@https://secure.php.net/manual/function.phpinfo.php]phpinfo()[/a] 的链" -"接。" +msgstr "显示 [a@https://php.net/manual/function.phpinfo.php]phpinfo()[/a] 输出的链接。" #: libraries/classes/Config/Descriptions.php:1309 msgid "Show phpinfo() link" @@ -5990,31 +5799,24 @@ msgid "Proxy password" msgstr "代理密码" #: libraries/classes/Config/Descriptions.php:1433 -#, fuzzy -#| msgid "" -#| "Enable [a@https://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for " -#| "import and export operations." msgid "Enable ZIP compression for import and export operations." -msgstr "" -"允许在导入和导出时使用 [a@https://zh.wikipedia.org/wiki/Gzip]gzip[/a] 压缩。" +msgstr "允许在导入和导出操作时使用 ZIP 压缩。" #: libraries/classes/Config/Descriptions.php:1435 msgid "ZIP" msgstr "ZIP" #: libraries/classes/Config/Descriptions.php:1437 -#, fuzzy msgid "Enter your public key for your domain reCaptcha service." -msgstr "输入主reCaptcha服务的公钥。" +msgstr "输入您域名reCaptcha服务的公钥。" #: libraries/classes/Config/Descriptions.php:1439 msgid "Public key for reCaptcha" msgstr "reCaptcha的公共密匙" #: libraries/classes/Config/Descriptions.php:1441 -#, fuzzy msgid "Enter your private key for your domain reCaptcha service." -msgstr "输入您的域的reCaptcha服务私钥。" +msgstr "输入您域名的reCaptcha服务私钥。" #: libraries/classes/Config/Descriptions.php:1443 msgid "Private key for reCaptcha" @@ -6060,18 +5862,12 @@ msgstr "总是扩展查询消息" #: libraries/classes/Config/Descriptions.php:1470 #: templates/console/display.twig:157 -#, fuzzy -#| msgid "Show current browsing query" msgid "Show current browsing query" msgstr "显示当前浏览查询" #: libraries/classes/Config/Descriptions.php:1472 -#, fuzzy -#| msgid "" -#| "Execute queries on Enter and insert new line with Shift + Enter. To make " -#| "this permanent, view settings." msgid "Execute queries on Enter and insert new line with Shift + Enter" -msgstr "浏览设置,使按Shift+Enter键执行输入和插入新行作为永久设置。" +msgstr "使用Enter执行查询,使用Shift + Enter插入新行" #: libraries/classes/Config/Descriptions.php:1474 #: templates/console/display.twig:168 @@ -6079,16 +5875,12 @@ msgid "Switch to dark theme" msgstr "切换到黑色主题" #: libraries/classes/Config/Descriptions.php:1476 -#, fuzzy -#| msgid "Console" msgid "Console height" -msgstr "控制台" +msgstr "控制台高度" #: libraries/classes/Config/Descriptions.php:1478 -#, fuzzy -#| msgid "Console" msgid "Console mode" -msgstr "控制台" +msgstr "控制台模式" #: libraries/classes/Config/Descriptions.php:1480 #: templates/console/display.twig:64 @@ -6096,16 +5888,12 @@ msgid "Group queries" msgstr "联合查询" #: libraries/classes/Config/Descriptions.php:1482 libraries/classes/Sql.php:254 -#, fuzzy -#| msgid "Other" msgid "Order" -msgstr "其它" +msgstr "顺序" #: libraries/classes/Config/Descriptions.php:1484 -#, fuzzy -#| msgid "Order by:" msgid "Order by" -msgstr "排序条件:" +msgstr "排序条件" #: libraries/classes/Config/FormDisplay.php:99 #: libraries/classes/Config/Validator.php:524 @@ -6234,10 +6022,8 @@ msgid "CSV using LOAD DATA" msgstr "CSV 使用 LOAD DATA" #: libraries/classes/Config/Forms/User/MainForm.php:32 -#, fuzzy -#| msgid "Browser transformation" msgid "Default transformations" -msgstr "浏览器转换" +msgstr "默认转换" #: libraries/classes/Config/PageSettings.php:134 msgid "Cannot save settings, submitted configuration form contains errors!" @@ -6269,29 +6055,17 @@ msgid "You should use SSL connections if your database server supports it." msgstr "如果您的数据库服务器支持,您应该使用 SSL 连接。" #: libraries/classes/Config/ServerConfigChecks.php:176 -#, fuzzy -#| msgid "" -#| "If you feel this is necessary, use additional protection settings - " -#| "%shost authentication%s settings and %strusted proxies list%s. However, " -#| "IP-based protection may not be reliable if your IP belongs to an ISP " -#| "where thousands of users, including you, are connected to." msgid "" "If you feel this is necessary, use additional protection settings - %1$shost " "authentication%2$s settings and %3$strusted proxies list%4%s. However, IP-" "based protection may not be reliable if your IP belongs to an ISP where " "thousands of users, including you, are connected to." msgstr "" -"如果有必要,您可以使用额外的保护设置 - %s主机认证%s和%s可信代理表%s。但如果您" -"和许多人共用一个 IP 地址,该措施的安全性将下降。" +"如果有必要,您可以使用额外的保护设置 - %1$s主机认证%2$s和%3$s可信代理表%4%s。但如果您和许多人共用一个 IP " +"地址,该措施的安全性将下降。" #: libraries/classes/Config/ServerConfigChecks.php:203 -#, fuzzy, php-format -#| msgid "" -#| "You set the [kbd]config[/kbd] authentication type and included username " -#| "and password for auto-login, which is not a desirable option for live " -#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/" -#| "kbd] or [kbd]http[/kbd]." +#, php-format msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -6299,10 +6073,9 @@ msgid "" "phpMyAdmin panel. Set %1$sauthentication type%2$s to [kbd]cookie[/kbd] or " "[kbd]http[/kbd]." msgstr "" -"您设置了 [kbd]config[/kbd] 认证方式,且为了能够自动登录而保存了用户名和密码," -"但在常用主机上不建议这样设置。如果有人知道 phpMyAdmin 的地址,他们就能够进入 " -"phpMyAdmin 的管理界面。建议将%s认证方式%s设置为 [kbd]cookie 认证[/kbd]或 " -"[kbd]HTTP 认证[/kbd]。" +"您设置了 [kbd]配置[/kbd] 认证方式,且为了能够自动登录而保存了用户名和密码,但在常用主机上不建议这样设置。如果有人知道 phpMyAdmin " +"的地址,他们就能够进入 phpMyAdmin 的管理界面。建议将%1$s认证方式%2$s设置为 [kbd]cookie 认证[/kbd]或 [kbd]" +"HTTP 认证[/kbd]。" #: libraries/classes/Config/ServerConfigChecks.php:230 msgid "You allow for connecting to the server without a password." @@ -6340,18 +6113,14 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "短语密码应包含字母、数字[em]和[/em]特殊字符。" #: libraries/classes/Config/ServerConfigChecks.php:418 -#, fuzzy, php-format -#| msgid "" -#| "%sLogin cookie validity%s greater than %ssession.gc_maxlifetime%s may " -#| "cause random session invalidation (currently session.gc_maxlifetime is " -#| "%d)." +#, php-format msgid "" "%1$sLogin cookie validity%2$s greater than %3$ssession.gc_maxlifetime%4$s " "may cause random session invalidation (currently session.gc_maxlifetime is " "%5$d)." msgstr "" -"如果%s登录 cookie 有效期%s超过 %ssession.gc_maxlifetime%s 的值 (当前 %d) 则可" -"能导致会话随机失效。" +"如果%1$s登录 cookie 有效期%2$s超过 %3$ssession.gc_maxlifetime%4$s 的值 (当前 %5$d) " +"则可能导致会话随机失效。" #: libraries/classes/Config/ServerConfigChecks.php:442 #, php-format @@ -6372,24 +6141,18 @@ msgstr "" "cookie 有效期%s的值不能超过前者。" #: libraries/classes/Config/ServerConfigChecks.php:506 -#, fuzzy, php-format -#| msgid "" -#| "%sBzip2 compression and decompression%s requires functions (%s) which are " -#| "unavailable on this system." +#, php-format msgid "" "%1$sBzip2 compression and decompression%2$s requires functions (%3$s) which " "are unavailable on this system." -msgstr "此系统目前不支持 %sBzip2 压缩和解压缩%s所必须的 (%s) 函数。" +msgstr "此系统目前不支持 %1$sBzip2 压缩和解压缩%2$s所必须的 (%3$s) 函数。" #: libraries/classes/Config/ServerConfigChecks.php:538 -#, fuzzy, php-format -#| msgid "" -#| "%sGZip compression and decompression%s requires functions (%s) which are " -#| "unavailable on this system." +#, php-format msgid "" "%1$sGZip compression and decompression%2$s requires functions (%3$s) which " "are unavailable on this system." -msgstr "此系统目前不支持 %sGZip 压缩和解压缩%s所必须的 (%s) 函数。" +msgstr "此系统目前不支持 %1$sGZip 压缩和解压缩%2$s所必须的 (%3$s) 函数。" #: libraries/classes/Config/Validator.php:210 #: libraries/classes/Config/Validator.php:217 @@ -6632,8 +6395,6 @@ msgid "Your SQL query has been executed successfully." msgstr "您的 SQL 语句已成功运行。" #: libraries/classes/Controllers/Table/TableRelationController.php:294 -#, fuzzy -#| msgid "Internal relation added" msgid "Internal relationships were successfully updated." msgstr "成功更新内联关系。" @@ -6642,8 +6403,6 @@ msgid "Table search" msgstr "普通搜索" #: libraries/classes/Controllers/Table/TableSearchController.php:785 -#, fuzzy -#| msgid "Zoom Search" msgid "Zoom search" msgstr "缩放搜索" @@ -6760,17 +6519,10 @@ msgstr "" "能会导致一些数据损坏!" #: libraries/classes/Core.php:1226 -#, fuzzy -#| msgid "" -#| "You have enabled mbstring.func_overload in your PHP configuration. This " -#| "option is incompatible with phpMyAdmin and might cause some data to be " -#| "corrupted!" msgid "" "You have disabled ini_get and/or ini_set in php.ini. This option is " "incompatible with phpMyAdmin!" -msgstr "" -"您在 PHP 设置中启用了 mbstring.func_overload。该选项和 phpMyAdmin 不兼容并可" -"能会导致一些数据损坏!" +msgstr "您在 php.ini 中禁用了 ini_get 和/或 ini_set。该选项和 phpMyAdmin 不兼容!" #: libraries/classes/Core.php:1277 msgid "GLOBALS overwrite attempt" @@ -6882,22 +6634,16 @@ msgid "at least one of the words" msgstr "至少一个词" #: libraries/classes/Database/Search.php:94 -#, fuzzy -#| msgid "at least one of the words" msgid "all of the words" -msgstr "至少一个词" +msgstr "所有词" #: libraries/classes/Database/Search.php:95 -#, fuzzy -#| msgid "the exact phrase" msgid "the exact phrase as substring" -msgstr "精确短语" +msgstr "作为substring的精确短语" #: libraries/classes/Database/Search.php:96 -#, fuzzy -#| msgid "the exact phrase" msgid "the exact phrase as whole field" -msgstr "精确短语" +msgstr "精确短语作为整个字段" #: libraries/classes/Database/Search.php:97 msgid "as regular expression" @@ -6909,23 +6655,18 @@ msgid "Words are separated by a space character (\" \")." msgstr "每个单词用空格(“ ”)分开。" #: libraries/classes/DatabaseInterface.php:1462 -#, fuzzy, php-format -#| msgid "" -#| "Unable to use timezone %1$s for server %2$d. Please check your " -#| "configuration setting for [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/" -#| "em]. phpMyAdmin is currently using the default time zone of the database " -#| "server." +#, php-format msgid "" "Unable to use timezone \"%1$s\" for server %2$d. Please check your " "configuration setting for [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/em]. " "phpMyAdmin is currently using the default time zone of the database server." msgstr "" -"无法为服务器 %2$d 设置时区 %1$s 。请检查您的配置中 [em]$cfg['Servers'][%3$d]" -"['SessionTimeZone'][/em] 字段。服务器当前使用默认时区。" +"无法为服务器 %2$d 设置时区 “%1$s” 。请检查您的配置中 " +"[em]$cfg['Servers'][%3$d]['SessionTimeZone'][/em] 字段。服务器当前使用默认时区。" #: libraries/classes/DatabaseInterface.php:1509 msgid "Failed to set configured collation connection!" -msgstr "读取配置文件失败!" +msgstr "无法设置配置的整理连接!" #: libraries/classes/DatabaseInterface.php:2122 msgid "" @@ -6939,7 +6680,7 @@ msgstr "服务器没有响应。" #: libraries/classes/DatabaseInterface.php:2131 msgid "Logout and try as another user." -msgstr "" +msgstr "注销并尝试作为另一个用户。" #: libraries/classes/DatabaseInterface.php:2137 msgid "Please check privileges of directory containing database." @@ -6950,10 +6691,8 @@ msgid "Details…" msgstr "详细…" #: libraries/classes/DatabaseInterface.php:2452 -#, fuzzy -#| msgid "Missing parameter:" msgid "Missing connection parameters!" -msgstr "缺少参数:" +msgstr "缺少连接参数!" #: libraries/classes/DatabaseInterface.php:2479 msgid "Connection for controluser as defined in your configuration failed." @@ -6968,7 +6707,7 @@ msgstr "详情请查看%s我们的文档%s。" msgid "" "You are using the mysql extension which is deprecated in phpMyAdmin. Please " "consider installing the mysqli extension." -msgstr "您正在使用mysql扩展,不推荐使用mysql扩展。请考虑使用mysqli扩展代替。" +msgstr "你在使用phpMyAdmin不推荐(废弃)的mysql扩展。请考虑安装mysqli扩展。" #: libraries/classes/Dbi/DbiMysqli.php:169 msgid "SSL connection enforced by server, automatically enabling it." @@ -7005,12 +6744,11 @@ msgstr "密码加密方式:" #: libraries/classes/Display/ChangePassword.php:130 #: libraries/classes/Server/Privileges.php:1737 -#, fuzzy msgid "" "This method requires using an 'SSL connection' or an 'unencrypted " "connection that encrypts the password using RSA'; while connecting to " "the server." -msgstr "此方法连接服务器时,需要使用SSL连接或未加密但使用RSA加密了密码的连接。" +msgstr "此方法连接服务器时,需要使用SSL连接未加密但使用RSA加密了密码的连接。" #: libraries/classes/Display/Export.php:319 msgid "@SERVER@ will become the server name" @@ -7737,13 +7475,10 @@ msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "只能预览单一数据表的UPDATE和DELETE查询。" #: libraries/classes/Import.php:1568 -#, fuzzy msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." -msgstr "" -"回滚操作需要数据表采用支持事务处理的存储引擎,且SQL查询仅限INSERT、UPDATE、" -"DELETE和REPLACE。" +msgstr "回滚操作需要数据表采用支持事务处理的存储引擎,且SQL查询仅限INSERT、UPDATE、DELETE和REPLACE。" #: libraries/classes/Index.php:658 #, php-format @@ -7924,7 +7659,7 @@ msgstr "视图" #: libraries/classes/Menu.php:290 libraries/classes/Menu.php:309 #, php-format msgid "“%s”" -msgstr "" +msgstr "“%s”" #: libraries/classes/Menu.php:344 #: libraries/classes/Navigation/Nodes/NodeTable.php:300 @@ -8096,8 +7831,6 @@ msgid "Data only" msgstr "仅数据" #: libraries/classes/MultSubmits.php:366 -#, fuzzy -#| msgid "Add AUTO_INCREMENT value" msgid "Add AUTO INCREMENT value" msgstr "添加自增值" @@ -8175,10 +7908,8 @@ msgid "Log out" msgstr "退出" #: libraries/classes/Navigation/NavigationHeader.php:175 -#, fuzzy -#| msgid "Dumping data for table" msgid "Empty session data" -msgstr "转存表中的数据" +msgstr "空会话数据" #: libraries/classes/Navigation/NavigationHeader.php:193 msgid "phpMyAdmin documentation" @@ -8344,13 +8075,13 @@ msgstr "" #: libraries/classes/Normalization.php:190 msgid "Show me the central list of columns that are not already in this table" -msgstr "" +msgstr "显示此表中尚未包含的列的中心列表" #: libraries/classes/Normalization.php:193 msgid "" "Select a column which can be split into more than one (on select of 'no such " "column', it'll move to next step)." -msgstr "" +msgstr "选择一个可以分割为一个以上的列(选择”无此列“将会移到下一步)。" #: libraries/classes/Normalization.php:200 normalization.php:19 msgid "Select one…" @@ -8427,7 +8158,6 @@ msgid "No redundant column" msgstr "无冗余字段" #: libraries/classes/Normalization.php:318 -#, fuzzy msgid "Move repeating groups" msgstr "移动重复组" @@ -8466,7 +8196,7 @@ msgstr "查找部分依赖" msgid "" "No partial dependencies possible as no non-primary column exists since " "primary key ( %1$s ) is composed of all the columns in the table." -msgstr "" +msgstr "由于不存在非主要列,因此不存在部分依赖性,因为主键(%1$s)由表中的所有列组成。" #: libraries/classes/Normalization.php:393 #: libraries/classes/Normalization.php:438 @@ -8474,31 +8204,29 @@ msgid "Table is already in second normal form." msgstr "资料表已经是第二正则化的。" #: libraries/classes/Normalization.php:398 -#, fuzzy, php-format +#, php-format msgid "" "The primary key ( %1$s ) consists of more than one column so we need to find " "the partial dependencies." -msgstr "主键 ( %1$s ) 由多个字段组成,我们需要查找部分依赖." +msgstr "主键 ( %1$s ) 由多个字段组成,因此我们需要查找部分依赖." #: libraries/classes/Normalization.php:403 #: libraries/classes/Normalization.php:790 -#, fuzzy msgid "" "Please answer the following question(s) carefully to obtain a correct " "normalization." -msgstr "请仔细回答下列问题以得到正确的正常化." +msgstr "请仔细回答下列问题以得到正确的规范化." #: libraries/classes/Normalization.php:407 -#, fuzzy msgid "+ Show me the possible partial dependencies based on data in the table" -msgstr "+ 根据表中数据向我展示可能的部分依赖" +msgstr "+ 根据表中数据向我展示可能的部分依赖关系" #: libraries/classes/Normalization.php:411 msgid "" "For each column below, please select the minimal set of columns among " "given set whose values combined together are sufficient to determine the " "value of the column." -msgstr "" +msgstr "对于下面的每一列,请在给定的值组合在一起足以确定列的值的列的集合当中选出列的最小集合。" #: libraries/classes/Normalization.php:421 #: libraries/classes/Normalization.php:829 @@ -8507,18 +8235,18 @@ msgid "'%1$s' depends on:" msgstr "'%1$s' 依赖:" #: libraries/classes/Normalization.php:433 -#, fuzzy, php-format +#, php-format msgid "" "No partial dependencies possible as the primary key ( %1$s ) has just one " "column." -msgstr "主键( %1$s )只包含一个字段,没有可能的部分依赖" +msgstr "主键( %1$s )只包含一个字段,没有可能的部分依赖。" #: libraries/classes/Normalization.php:462 #, php-format msgid "" "In order to put the original table '%1$s' into Second normal form we need to " "create the following tables:" -msgstr "" +msgstr "为了将原始表'%1$s'放入第二范式,我们需要创建以下表:" #: libraries/classes/Normalization.php:499 #, php-format @@ -8528,27 +8256,24 @@ msgstr "标准化第二步请完成表“%1$s”。" #: libraries/classes/Normalization.php:539 #: libraries/classes/Normalization.php:689 #: libraries/classes/Normalization.php:761 -#, fuzzy -#| msgid "Error in processing request" msgid "Error in processing!" -msgstr "处理请求时的错误" +msgstr "处理时出现错误!" #: libraries/classes/Normalization.php:585 #, php-format msgid "" "In order to put the original table '%1$s' into Third normal form we need to " "create the following tables:" -msgstr "" +msgstr "为了将原始表'%1$s'放入第三范式,我们需要创建以下表:" #: libraries/classes/Normalization.php:633 msgid "The third step of normalization is complete." -msgstr "" +msgstr "标准化的第三步已完成。" #: libraries/classes/Normalization.php:740 -#, fuzzy, php-format -#| msgid "Selected target tables have been synchronized with source tables." +#, php-format msgid "Selected repeating group has been moved to the table '%s'" -msgstr "选中的数据表已根据源数据表同步。" +msgstr "选定的重复组已移至表“%s”中" #: libraries/classes/Normalization.php:787 msgid "Step 3." @@ -8556,7 +8281,7 @@ msgstr "第三步." #: libraries/classes/Normalization.php:787 msgid "Find transitive dependencies" -msgstr "" +msgstr "查找传递依赖项" #: libraries/classes/Normalization.php:794 msgid "" @@ -8565,50 +8290,50 @@ msgid "" "value of the column.
Note: A column may have no transitive dependency, " "in that case you don't have to select any." msgstr "" +"对于下面的每一列,请在给定集合中选择列的最小集合,其值组合在一起足以确定列的值
注意:列可能没有传递依赖性,在这种情况下,您不必选择任何项。" #: libraries/classes/Normalization.php:843 msgid "" "No Transitive dependencies possible as the table doesn't have any non " "primary key columns" -msgstr "" +msgstr "没有传递依赖性,因为该表没有任何非主键列" #: libraries/classes/Normalization.php:847 msgid "Table is already in Third normal form!" -msgstr "" +msgstr "表已经处于第三范式!" #: libraries/classes/Normalization.php:873 -#, fuzzy -#| msgid "Hide table structure actions" msgid "Improve table structure (Normalization):" -msgstr "隐藏表结构操作" +msgstr "改进表结构(规范化):" #: libraries/classes/Normalization.php:874 msgid "Select up to what step you want to normalize" -msgstr "" +msgstr "选择您要标准化的步骤" #: libraries/classes/Normalization.php:878 msgid "Second step of normalization (1NF+2NF)" -msgstr "" +msgstr "规范化的第二步(第一范式 + 第二范式 )" #: libraries/classes/Normalization.php:879 msgid "Third step of normalization (1NF+2NF+3NF)" -msgstr "" +msgstr "规范化的第三步(第一范式 + 第二范式 + 第三范式)" #: libraries/classes/Normalization.php:889 msgid "" "Hint: Please follow the procedure carefully in order to obtain correct " "normalization" -msgstr "" +msgstr "提示:请仔细按照程序进行,以获得正确的规范化" #: libraries/classes/Normalization.php:955 msgid "" "This list is based on a subset of the table's data and is not necessarily " "accurate. " -msgstr "" +msgstr "此列表基于表数据的子集,并不一定准确。 " #: libraries/classes/Normalization.php:971 msgid "No partial dependencies found!" -msgstr "" +msgstr "找不到部分依赖关系!" #: libraries/classes/Operations.php:90 msgid "Rename database to" @@ -8637,8 +8362,6 @@ msgid "Drop the database (DROP)" msgstr "删除数据库 (DROP)" #: libraries/classes/Operations.php:207 -#, fuzzy -#| msgid "Copy database to" msgid "Copy database to" msgstr "复制数据库到" @@ -8651,16 +8374,12 @@ msgid "Switch to copied database" msgstr "切换到复制的数据库" #: libraries/classes/Operations.php:305 -#, fuzzy -#| msgid "Continued table caption" msgid "Change all tables collations" -msgstr "表说明续" +msgstr "更改所有表排序规则" #: libraries/classes/Operations.php:311 -#, fuzzy -#| msgid "Make all columns atomic" msgid "Change all tables columns collations" -msgstr "使所有字段原子化" +msgstr "更改所有表列的排序规则" #: libraries/classes/Operations.php:784 msgid "Alter table order by" @@ -8693,7 +8412,7 @@ msgstr "存储引擎" #: libraries/classes/Operations.php:1078 msgid "Change all column collations" -msgstr "" +msgstr "更改所有列排序规则" #: libraries/classes/Operations.php:1249 msgid "Copy table to (database.table)" @@ -8720,10 +8439,8 @@ msgstr "检查表" #: libraries/classes/Operations.php:1405 #: templates/database/structure/check_all_tables.twig:21 -#, fuzzy -#| msgid "Check table" msgid "Checksum table" -msgstr "检查表" +msgstr "校验值表" #: libraries/classes/Operations.php:1419 msgid "Defragment table" @@ -8791,13 +8508,11 @@ msgstr "修复" #: libraries/classes/Operations.php:1573 #: templates/table/structure/display_structure.twig:179 msgid "Truncate" -msgstr "" +msgstr "清空" #: libraries/classes/Operations.php:1587 -#, fuzzy -#| msgid "Close" msgid "Coalesce" -msgstr "关闭" +msgstr "联合" #: libraries/classes/Operations.php:1596 msgid "Partition maintenance" @@ -8888,7 +8603,7 @@ msgstr "" #: libraries/classes/Plugins/Auth/AuthenticationConfig.php:153 msgid "Retry to connect" -msgstr "" +msgstr "重试连接" #: libraries/classes/Plugins/Auth/AuthenticationCookie.php:134 msgid "Your session has expired. Please log in again." @@ -8912,18 +8627,16 @@ msgid "Server Choice:" msgstr "选择服务器:" #: libraries/classes/Plugins/Auth/AuthenticationCookie.php:313 -#, fuzzy -#| msgid "Could not connect to the database server!" msgid "Failed to connect to the reCAPTCHA service!" -msgstr "无法连接到数据库!" +msgstr "无法连接到reCAPTCHA服务!" #: libraries/classes/Plugins/Auth/AuthenticationCookie.php:315 msgid "Entered captcha is wrong, try again!" -msgstr "" +msgstr "输入的验证码有误,请再试一次!" #: libraries/classes/Plugins/Auth/AuthenticationCookie.php:320 msgid "Missing reCAPTCHA verification, maybe it has been blocked by adblock?" -msgstr "" +msgstr "缺少reCAPTCHA验证,也许它被adblock阻止了或者您没有科学上网?" #: libraries/classes/Plugins/Auth/AuthenticationCookie.php:344 msgid "You are not allowed to log in to this MySQL server!" @@ -8954,7 +8667,7 @@ msgstr "无法登录 MySQL 服务器" #: libraries/classes/Plugins/AuthenticationPlugin.php:335 msgid "You have enabled two factor authentication, please confirm your login." -msgstr "" +msgstr "您已启用双因素身份验证,请确认您的登录信息。" #: libraries/classes/Plugins/Export/ExportCodegen.php:101 #: templates/display/import/import.twig:168 @@ -9089,11 +8802,11 @@ msgstr "替换视图以便查看" #: libraries/classes/Plugins/Export/ExportJson.php:89 msgid "Output pretty-printed JSON (Use human-readable formatting)" -msgstr "" +msgstr "输出格式化后的JSON(使用人类可读的格式)" #: libraries/classes/Plugins/Export/ExportJson.php:95 msgid "Output unicode characters unescaped" -msgstr "" +msgstr "输出unicode字符未转义" #: libraries/classes/Plugins/Export/ExportLatex.php:51 msgid "Content of table @TABLE@" @@ -9115,24 +8828,18 @@ msgstr "对象创建选项" #: libraries/classes/Plugins/Export/ExportLatex.php:121 #: libraries/classes/Plugins/Export/ExportLatex.php:173 -#, fuzzy -#| msgid "Table caption" msgid "Table caption:" -msgstr "表的标题" +msgstr "表的标题:" #: libraries/classes/Plugins/Export/ExportLatex.php:127 #: libraries/classes/Plugins/Export/ExportLatex.php:179 -#, fuzzy -#| msgid "Table caption (continued)" msgid "Table caption (continued):" -msgstr "表的副标题" +msgstr "表的副标题:" #: libraries/classes/Plugins/Export/ExportLatex.php:133 #: libraries/classes/Plugins/Export/ExportLatex.php:185 -#, fuzzy -#| msgid "Label key" msgid "Label key:" -msgstr "关键标签" +msgstr "关键标签:" #: libraries/classes/Plugins/Export/ExportLatex.php:140 #: libraries/classes/Plugins/Export/ExportOdt.php:100 @@ -9152,58 +8859,44 @@ msgid "Display MIME types" msgstr "显示 MIME 类型" #: libraries/classes/Plugins/Export/ExportLatex.php:168 -#, fuzzy -#| msgid "Put columns names in the first row" msgid "Put columns names in the first row:" -msgstr "首行保存字段名" +msgstr "首行放置列名:" #: libraries/classes/Plugins/Export/ExportLatex.php:216 #: libraries/classes/Plugins/Export/ExportSql.php:694 #: libraries/classes/Plugins/Export/ExportXml.php:236 #: libraries/classes/ReplicationGui.php:447 #: libraries/classes/ReplicationGui.php:709 -#, fuzzy -#| msgid "Host" msgid "Host:" -msgstr "主机" +msgstr "主机:" #: libraries/classes/Plugins/Export/ExportLatex.php:221 #: libraries/classes/Plugins/Export/ExportSql.php:700 #: libraries/classes/Plugins/Export/ExportXml.php:241 -#, fuzzy -#| msgid "Generation Time" msgid "Generation Time:" -msgstr "生成日期" +msgstr "生成日期:" #: libraries/classes/Plugins/Export/ExportLatex.php:224 #: libraries/classes/Plugins/Export/ExportSql.php:706 #: libraries/classes/Plugins/Export/ExportXml.php:244 -#, fuzzy -#| msgid "PHP Version" msgid "PHP Version:" -msgstr "PHP 版本" +msgstr "PHP 版本:" #: libraries/classes/Plugins/Export/ExportLatex.php:254 #: libraries/classes/Plugins/Export/ExportSql.php:895 #: libraries/classes/Plugins/Export/ExportXml.php:405 #: libraries/classes/Plugins/Export/Helpers/Pdf.php:118 -#, fuzzy -#| msgid "Database" msgid "Database:" -msgstr "数据库" +msgstr "数据库:" #: libraries/classes/Plugins/Export/ExportLatex.php:327 #: libraries/classes/Plugins/Export/ExportSql.php:2188 -#, fuzzy -#| msgid "Data" msgid "Data:" -msgstr "数据" +msgstr "数据:" #: libraries/classes/Plugins/Export/ExportLatex.php:507 -#, fuzzy -#| msgid "Structure" msgid "Structure:" -msgstr "结构" +msgstr "结构:" #: libraries/classes/Plugins/Export/ExportMediawiki.php:81 msgid "Export table names" @@ -9218,22 +8911,16 @@ msgid "Report title:" msgstr "报告标题:" #: libraries/classes/Plugins/Export/ExportPdf.php:228 -#, fuzzy -#| msgid "Dumping data for table" msgid "Dumping data" -msgstr "转存表中的数据" +msgstr "转存数据" #: libraries/classes/Plugins/Export/ExportPdf.php:283 -#, fuzzy -#| msgid "structure" msgid "View structure" -msgstr "结构" +msgstr "查看结构" #: libraries/classes/Plugins/Export/ExportPdf.php:286 -#, fuzzy -#| msgid "and then" msgid "Stand in" -msgstr "然后" +msgstr "代替" #: libraries/classes/Plugins/Export/ExportSql.php:102 msgid "" @@ -9252,10 +8939,8 @@ msgid "" msgstr "包含数据库创建、最后更新和最后检查的时间" #: libraries/classes/Plugins/Export/ExportSql.php:175 -#, fuzzy -#| msgid "Export method" msgid "Export metadata" -msgstr "导出方式" +msgstr "导出元数据" #: libraries/classes/Plugins/Export/ExportSql.php:190 msgid "" @@ -9279,13 +8964,12 @@ msgstr "添加 %s 语句" #: libraries/classes/Plugins/Export/ExportSql.php:289 msgid "(less efficient as indexes will be generated during table creation)" -msgstr "" +msgstr "(在创建表时将生成索引,效率较低)" #: libraries/classes/Plugins/Export/ExportSql.php:297 -#, fuzzy, php-format -#| msgid "Session value" +#, php-format msgid "%s value" -msgstr "会话值" +msgstr "%s值" #: libraries/classes/Plugins/Export/ExportSql.php:331 msgid "" @@ -9343,16 +9027,12 @@ msgstr "" "如:INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), (7,8,9)" #: libraries/classes/Plugins/Export/ExportSql.php:424 -#, fuzzy -#| msgid "" -#| "both of the above
      Example: INSERT INTO " -#| "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B,col_C) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" -"以上兼有
      如:INSERT INTO tbl_name (col_A," -"col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" +"以上兼有
      如:INSERT INTO tbl_name " +"(col_A,col_B,col_C) VALUES (1,2,3), (4,5,6), (7,8,9)" #: libraries/classes/Plugins/Export/ExportSql.php:429 msgid "" @@ -9378,31 +9058,27 @@ msgstr "" #: libraries/classes/Plugins/Export/ExportSql.php:519 msgid "It appears your database uses routines;" -msgstr "" +msgstr "您的数据库似乎使用例程;" #: libraries/classes/Plugins/Export/ExportSql.php:522 #: libraries/classes/Plugins/Export/ExportSql.php:1548 #: libraries/classes/Plugins/Export/ExportSql.php:2065 msgid "alias export may not work reliably in all cases." -msgstr "" +msgstr "在所有情况下,别名导出可能无法可靠地运行。" #: libraries/classes/Plugins/Export/ExportSql.php:1009 -#, fuzzy -#| msgid "Metadata Headers" msgid "Metadata" -msgstr "元数据头" +msgstr "元数据" #: libraries/classes/Plugins/Export/ExportSql.php:1079 -#, fuzzy, php-format -#| msgid "Metadata Headers" +#, php-format msgid "Metadata for table %s" -msgstr "元数据头" +msgstr "表%s的元数据" #: libraries/classes/Plugins/Export/ExportSql.php:1086 -#, fuzzy, php-format -#| msgid "Metadata Headers" +#, php-format msgid "Metadata for database %s" -msgstr "元数据头" +msgstr "数据库%s的元数据" #: libraries/classes/Plugins/Export/ExportSql.php:1418 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:603 @@ -9422,11 +9098,11 @@ msgstr "最后检查:" #: libraries/classes/Plugins/Export/ExportSql.php:1491 #, php-format msgid "Error reading structure for table %s:" -msgstr "读取表 %s 的结构时出错" +msgstr "读取表 %s 的结构时出错:" #: libraries/classes/Plugins/Export/ExportSql.php:1545 msgid "It appears your database uses views;" -msgstr "" +msgstr "您的数据库似乎使用视图;" #: libraries/classes/Plugins/Export/ExportSql.php:1722 msgid "Constraints for dumped tables" @@ -9437,16 +9113,12 @@ msgid "Constraints for table" msgstr "限制表" #: libraries/classes/Plugins/Export/ExportSql.php:1753 -#, fuzzy -#| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" -msgstr "限制导出的表" +msgstr "转储表的索引" #: libraries/classes/Plugins/Export/ExportSql.php:1754 -#, fuzzy -#| msgid "Inside tables:" msgid "Indexes for table" -msgstr "于下列表:" +msgstr "表的索引" #: libraries/classes/Plugins/Export/ExportSql.php:1782 msgid "AUTO_INCREMENT for dumped tables" @@ -9461,29 +9133,26 @@ msgid "MIME TYPES FOR TABLE" msgstr "MIME 类型表" #: libraries/classes/Plugins/Export/ExportSql.php:1881 -#, fuzzy -#| msgid "RELATIONS FOR TABLE" msgid "RELATIONSHIPS FOR TABLE" -msgstr "表的关联" +msgstr "表的关系" #: libraries/classes/Plugins/Export/ExportSql.php:2062 msgid "It appears your table uses triggers;" -msgstr "" +msgstr "您的表似乎使用了触发器;" #: libraries/classes/Plugins/Export/ExportSql.php:2099 -#, fuzzy, php-format -#| msgid "Structure for view" +#, php-format msgid "Structure for view %s exported as a table" -msgstr "视图结构" +msgstr "视图结构%s作为一个表导出" #: libraries/classes/Plugins/Export/ExportSql.php:2123 msgid "(See below for the actual view)" -msgstr "" +msgstr "(参见下面的实际视图)" #: libraries/classes/Plugins/Export/ExportSql.php:2203 #, php-format msgid "Error reading data for table %s:" -msgstr "读取表 %s 的数据时发生错误" +msgstr "读取表 %s 的数据时发生错误:" #: libraries/classes/Plugins/Export/ExportXml.php:98 msgid "Object creation options (all are recommended)" @@ -9499,18 +9168,16 @@ msgstr "表:" #: libraries/classes/Plugins/Export/Helpers/Pdf.php:120 msgid "Purpose:" -msgstr "" +msgstr "目的:" #: libraries/classes/Plugins/Export/Helpers/Pdf.php:501 -#, fuzzy -#| msgid "MIME type" msgid "MIME" -msgstr "MIME 类型" +msgstr "MIME" #: libraries/classes/Plugins/Import/AbstractImportCsv.php:51 msgid "" "Update data when duplicate keys found on import (add ON DUPLICATE KEY UPDATE)" -msgstr "" +msgstr "在导入时找到重复键时更新数据(添加ON DUPLICATE KEY UPDATE)" #: libraries/classes/Plugins/Import/ImportCsv.php:63 #: libraries/classes/Plugins/Import/ImportOds.php:64 @@ -9592,7 +9259,7 @@ msgstr "该 XML 文件有错误或者不完整。请修复错误后重试。" #: libraries/classes/Plugins/Import/ImportOds.php:163 msgid "Could not parse OpenDocument Spreadsheet!" -msgstr "无法解析电子表格" +msgstr "无法解析OpenDocument电子表格!" #: libraries/classes/Plugins/Import/ImportShp.php:48 msgid "ESRI Shape File" @@ -9644,16 +9311,13 @@ msgid "SCHEMA ERROR: " msgstr "大纲错误: " #: libraries/classes/Plugins/Schema/Pdf/Pdf.php:238 -#, fuzzy -#| msgid "Invalid export type" msgid "PDF export page" -msgstr "导出类型无效" +msgstr "PDF导出页面" #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:102 -#, fuzzy, php-format -#| msgid "Schema of the %s database - Page %s" +#, php-format msgid "Schema of the %s database" -msgstr "数据库 %s 的大纲 - 第 %s 页" +msgstr "数据库 %s 的大纲" #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:130 #: libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php:525 @@ -9693,7 +9357,7 @@ msgstr "纵向" #: libraries/classes/Plugins/Schema/SchemaPdf.php:62 #: libraries/classes/Plugins/Schema/SchemaSvg.php:61 msgid "Same width for all tables" -msgstr "" +msgstr "所有表格的宽度相同" #: libraries/classes/Plugins/Schema/SchemaPdf.php:87 msgid "Show grid" @@ -9701,28 +9365,20 @@ msgstr "显示网格" #: libraries/classes/Plugins/Schema/SchemaPdf.php:93 #: templates/database/structure/print_view_data_dictionary_link.twig:6 -#, fuzzy -#| msgid "Data Dictionary" msgid "Data dictionary" msgstr "数据字典" #: libraries/classes/Plugins/Schema/SchemaPdf.php:99 -#, fuzzy -#| msgid "neither of the above" msgid "Order of the tables" -msgstr "以上均不" +msgstr "表的顺序" #: libraries/classes/Plugins/Schema/SchemaPdf.php:104 -#, fuzzy -#| msgid "Ascending" msgid "Name (Ascending)" -msgstr "递增" +msgstr "名称(升序)" #: libraries/classes/Plugins/Schema/SchemaPdf.php:105 -#, fuzzy -#| msgid "Descending" msgid "Name (Descending)" -msgstr "递减" +msgstr "名称(降序)" #: libraries/classes/Plugins/SchemaPlugin.php:69 msgid "Show color" @@ -9736,7 +9392,7 @@ msgstr "仅显示键" msgid "" "Converts Boolean values to text (default 'T' and 'F'). First option is for " "TRUE, second for FALSE. Nonzero=true." -msgstr "" +msgstr "将布尔值转换为文本(默认为“T”和“F”)。第一个选项为TRUE,第二个选项为FALSE。非零(Nonzero)=真。" #: libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php:30 msgid "" @@ -9772,18 +9428,6 @@ msgstr "" "表中的一个字段值作为文件名。如果想使用字段值作为文件名,第一个选项必须留空。" #: libraries/classes/Plugins/Transformations/Abs/ExternalTransformationsPlugin.php:28 -#, fuzzy -#| msgid "" -#| "LINUX ONLY: Launches an external application and feeds it the column data " -#| "via standard input. Returns the standard output of the application. The " -#| "default is Tidy, to pretty-print HTML code. For security reasons, you " -#| "have to manually edit the file libraries/transformations/" -#| "text_plain__external.inc.php and list the tools you want to make " -#| "available. The first option is then the number of the program you want to " -#| "use and the second option is the parameters for the program. The third " -#| "option, if set to 1, will convert the output using htmlspecialchars() " -#| "(Default 1). The fourth option, if set to 1, will prevent wrapping and " -#| "ensure that the output appears all on one line (Default 1)." msgid "" "LINUX ONLY: Launches an external application and feeds it the column data " "via standard input. Returns the standard output of the application. The " @@ -9796,12 +9440,11 @@ msgid "" "option, if set to 1, will prevent wrapping and ensure that the output " "appears all on one line (Default 1)." msgstr "" -"仅 LINUX:调用外部程序并通过标准输入传入字段数据。返回此应用程序的标准输出。" -"默认为 Tidy,可以很好的打印 HTML 代码。为了安全起见,您需要手动编辑 " -"libraries/plugins/text_Plain_External.class.php 文件来加入可以运行的工具。第" -"一个选项是您想要使用的程序编号,第二个选项是程序的参数。第三个参数如果设为 1 " -"的话将会用 htmlspecialchars() 处理输出 (默认为 1)。第四个参数如果设为 1 的" -"话,将禁止换行,确保所有内容显示在一行中 (默认为 1)。" +"仅 LINUX:调用外部程序并通过标准输入传入字段数据。返回此应用程序的标准输出。默认为 Tidy,可以很好的打印 HTML 代码。为了安全起见," +"您需要手动编辑 libraries/classes/Plugins/Transformations/Output/" +"Text_Plain_External.php 文件来加入可以运行的工具。第一个选项是您想要使用的程序编号,第二个选项是程序的参数。第三个参数如果设为 " +"1 的话将会用 htmlspecialchars() 处理输出 (默认为 1)。第四个参数如果设为 1 的话,将禁止换行,确保所有内容显示在一行中 (" +"默认为 1)。" #: libraries/classes/Plugins/Transformations/Abs/FormattedTransformationsPlugin.php:28 msgid "" @@ -9826,11 +9469,11 @@ msgstr "显示下载此图像的链接。" msgid "" "Image upload functionality which also displays a thumbnail. The options are " "the width and height of the thumbnail in pixels. Defaults to 100 X 100." -msgstr "" +msgstr "图像上传功能,也显示缩略图。选项是缩略图的宽度和高度(以像素为单位)。默认为100 X 100。" #: libraries/classes/Plugins/Transformations/Abs/ImageUploadTransformationsPlugin.php:87 msgid "Image preview here" -msgstr "" +msgstr "图像在这里预览" #: libraries/classes/Plugins/Transformations/Abs/InlineTransformationsPlugin.php:32 msgid "" @@ -9839,32 +9482,28 @@ msgid "" msgstr "显示可点击的缩略图。在原比例不变的情况下,可按像素指定最大宽度或高度。" #: libraries/classes/Plugins/Transformations/Abs/LongToIPv4TransformationsPlugin.php:28 -#, fuzzy -#| msgid "" -#| "Converts an (IPv4) Internet network address into a string in Internet " -#| "standard dotted format." msgid "" "Converts an (IPv4) Internet network address stored as a BIGINT into a string " "in Internet standard dotted format." -msgstr "将一个 IPv4 (互联网协议第四版) 地址转换成点分十进制标准格式。" +msgstr "将一个存储为 BIGINT 的 IPv4 (互联网协议第四版) 地址转换成点分十进制标准格式。" #: libraries/classes/Plugins/Transformations/Abs/PreApPendTransformationsPlugin.php:29 msgid "" "Prepends and/or Appends text to a string. First option is text to be " "prepended, second is appended (enclosed in single quotes, default empty " "string)." -msgstr "" +msgstr "从前面或者后面将文本附加到字符串。第一个选项是被添加的文本,第二个是添加的文本(用单引号括起来,默认为空字符串)。" #: libraries/classes/Plugins/Transformations/Abs/RegexValidationTransformationsPlugin.php:30 msgid "" "Validates the string using regular expression and performs insert only if " "string matches it. The first option is the Regular Expression." -msgstr "" +msgstr "使用正则表达式验证字符串,并仅在字符串匹配时执行insert。第一个选项是正则表达式。" #: libraries/classes/Plugins/Transformations/Abs/RegexValidationTransformationsPlugin.php:52 #, php-format msgid "Validation failed for the input string %s." -msgstr "" +msgstr "输入字符串%s的验证失败。" #: libraries/classes/Plugins/Transformations/Abs/SQLTransformationsPlugin.php:29 msgid "Formats text as SQL query with syntax highlighting." @@ -9886,7 +9525,7 @@ msgstr "" msgid "" "File upload functionality for TEXT columns. It does not have a textarea for " "input." -msgstr "" +msgstr "TEXT列的文件上载功能。它没有输入文本区域。" #: libraries/classes/Plugins/Transformations/Abs/TextImageLinkTransformationsPlugin.php:33 msgid "" @@ -9908,154 +9547,121 @@ msgstr "" #: libraries/classes/Plugins/Transformations/Input/Text_Plain_Iptobinary.php:30 msgid "Converts an Internet network address in (IPv4/IPv6) format to binary" -msgstr "" +msgstr "将(IPv4 / IPv6)格式的Internet网络地址转换为二进制" #: libraries/classes/Plugins/Transformations/Input/Text_Plain_JsonEditor.php:30 msgid "Syntax highlighted CodeMirror editor for JSON." -msgstr "" +msgstr "JSON的带有语法高亮的CodeMirror编辑器。" #: libraries/classes/Plugins/Transformations/Input/Text_Plain_SqlEditor.php:30 msgid "Syntax highlighted CodeMirror editor for SQL." -msgstr "" +msgstr "SQL的带有语法高亮的CodeMirror编辑器。" #: libraries/classes/Plugins/Transformations/Input/Text_Plain_XmlEditor.php:30 msgid "Syntax highlighted CodeMirror editor for XML (and HTML)." -msgstr "" +msgstr "XML/HTML的带有语法高亮的CodeMirror编辑器。" #: libraries/classes/Plugins/Transformations/Output/Text_Plain_Binarytoip.php:30 -#, fuzzy -#| msgid "" -#| "Converts an (IPv4) Internet network address into a string in Internet " -#| "standard dotted format." msgid "" "Converts an Internet network address stored as a binary string into a string " "in Internet standard (IPv4/IPv6) format." -msgstr "将一个 IPv4 (互联网协议第四版) 地址转换成点分十进制标准格式。" +msgstr "将一个存储为二进制字符串的互联网地址转换成互联网标准(IPv4/IPv6)格式。" #: libraries/classes/Plugins/Transformations/Output/Text_Plain_Json.php:47 -#, fuzzy -#| msgid "Formats text as SQL query with syntax highlighting." msgid "Formats text as JSON with syntax highlighting." -msgstr "将文本以 SQL 语法高亮显示。" +msgstr "将文本以 JSON 语法高亮显示。" #: libraries/classes/Plugins/Transformations/Output/Text_Plain_Xml.php:47 -#, fuzzy -#| msgid "Formats text as SQL query with syntax highlighting." msgid "Formats text as XML with syntax highlighting." -msgstr "将文本以 SQL 语法高亮显示。" +msgstr "将文本以 XML 语法高亮显示。" #: libraries/classes/Plugins/TwoFactor/Application.php:129 -#, fuzzy -#| msgid "Authentication" msgid "Authentication Application (2FA)" -msgstr "认证" +msgstr "认证应用(双重验证)" #: libraries/classes/Plugins/TwoFactor/Application.php:139 msgid "" "Provides authentication using HOTP and TOTP applications such as FreeOTP, " "Google Authenticator or Authy." -msgstr "" +msgstr "使用HOTP和TOTP应用程序(如FreeOTP,Google身份验证器或Authy)提供身份验证。" #: libraries/classes/Plugins/TwoFactor/Key.php:186 msgid "Hardware Security Key (FIDO U2F)" -msgstr "" +msgstr "硬件安全密钥(FIDO U2F)" #: libraries/classes/Plugins/TwoFactor/Key.php:196 msgid "" "Provides authentication using hardware security tokens supporting FIDO U2F." -msgstr "" +msgstr "使用支持FIDO U2F的硬件安全令牌提供身份验证。" #: libraries/classes/Plugins/TwoFactor/Simple.php:52 -#, fuzzy -#| msgid "Signon authentication" msgid "Simple two-factor authentication" -msgstr "Signon 认证" +msgstr "简单的双因素身份验证" #: libraries/classes/Plugins/TwoFactor/Simple.php:62 msgid "For testing purposes only!" -msgstr "" +msgstr "仅用于测试目的!" #: libraries/classes/Plugins/TwoFactorPlugin.php:70 -#, fuzzy, php-format -#| msgid "Hardware authentication failed!" +#, php-format msgid "Two-factor authentication failed: %s" -msgstr "硬件认证失败!" +msgstr "双因素身份验证失败:%s" #: libraries/classes/Plugins/TwoFactorPlugin.php:74 -#, fuzzy -#| msgid "Hardware authentication failed!" msgid "Two-factor authentication failed." -msgstr "硬件认证失败!" +msgstr "双因素身份验证失败。" #: libraries/classes/Plugins/TwoFactorPlugin.php:127 msgid "No Two-Factor" -msgstr "" +msgstr "没有双因素" #: libraries/classes/Plugins/TwoFactorPlugin.php:137 msgid "Login using password only." -msgstr "" +msgstr "仅使用密码登录。" #: libraries/classes/PmdCommon.php:550 -#, fuzzy -#| msgid "Error: relation already exists." msgid "Error: relationship already exists." msgstr "错误:关系已存在。" #: libraries/classes/PmdCommon.php:596 -#, fuzzy -#| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relationship has been added." -msgstr "已添加外键关联" +msgstr "已添加外键关联。" #: libraries/classes/PmdCommon.php:602 -#, fuzzy -#| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relationship could not be added!" -msgstr "错误:关系未添加。" +msgstr "错误:无法添加外键关系!" #: libraries/classes/PmdCommon.php:607 msgid "Error: Missing index on column(s)." -msgstr "" +msgstr "错误:列上缺少索引。" #: libraries/classes/PmdCommon.php:612 msgid "Error: Relational features are disabled!" msgstr "错误:关系功能被禁用!" #: libraries/classes/PmdCommon.php:634 -#, fuzzy -#| msgid "Internal relation added" msgid "Internal relationship has been added." -msgstr "已添加内联关系" +msgstr "已添加内联关系。" #: libraries/classes/PmdCommon.php:640 -#, fuzzy -#| msgid "Error: Relation not added." msgid "Error: Internal relationship could not be added!" -msgstr "错误:关系未添加。" +msgstr "错误:内联关系无法添加!" #: libraries/classes/PmdCommon.php:678 -#, fuzzy -#| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relationship has been removed." -msgstr "已添加外键关联" +msgstr "已移除外键关联。" #: libraries/classes/PmdCommon.php:684 -#, fuzzy -#| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relationship could not be removed!" -msgstr "错误:关系未添加。" +msgstr "错误:外键关联无法移除!" #: libraries/classes/PmdCommon.php:711 -#, fuzzy -#| msgid "Error: Relation not added." msgid "Error: Internal relationship could not be removed!" -msgstr "错误:关系未添加。" +msgstr "错误:内联关系无法移除!" #: libraries/classes/PmdCommon.php:715 -#, fuzzy -#| msgid "Internal relation added" msgid "Internal relationship has been removed." -msgstr "已添加内联关系" +msgstr "已移除内联关系。" #: libraries/classes/RecentFavoriteTable.php:139 msgid "Could not save recent table!" @@ -10104,10 +9710,8 @@ msgid "Enabled" msgstr "已启用" #: libraries/classes/Relation.php:116 -#, fuzzy -#| msgid "Configuration saved." msgid "Configuration of pmadb…" -msgstr "配置已保存。" +msgstr "配置pmadb…" #: libraries/classes/Relation.php:120 libraries/classes/Relation.php:156 msgid "General relation features" @@ -10118,10 +9722,8 @@ msgid "Display Features" msgstr "显示功能" #: libraries/classes/Relation.php:184 -#, fuzzy -#| msgid "Creation of PDFs" msgid "Designer and creation of PDFs" -msgstr "创建 PDF" +msgstr "设计器和PDF创建" #: libraries/classes/Relation.php:195 msgid "Displaying Column Comments" @@ -10132,11 +9734,8 @@ msgid "Browser transformation" msgstr "浏览器转换" #: libraries/classes/Relation.php:208 -#, fuzzy -#| msgid "" -#| "Please see the documentation on how to update your column_comments table." msgid "Please see the documentation on how to update your column_info table." -msgstr "请参见文档中关于如何更新您的 column_comments 表。" +msgstr "请参见文档中关于如何更新您的 column_info 表。" #: libraries/classes/Relation.php:224 libraries/classes/SqlQueryForm.php:401 msgid "Bookmarked SQL query" @@ -10151,10 +9750,8 @@ msgid "Persistent recently used tables" msgstr "持久最近使用的表" #: libraries/classes/Relation.php:257 -#, fuzzy -#| msgid "Persistent recently used tables" msgid "Persistent favorite tables" -msgstr "持久最近使用的表" +msgstr "持久喜欢的表" #: libraries/classes/Relation.php:268 msgid "Persistent tables' UI preferences" @@ -10165,47 +9762,37 @@ msgid "User preferences" msgstr "用户偏好" #: libraries/classes/Relation.php:307 -#, fuzzy -#| msgid "Configuration: %s" msgid "Configurable menus" -msgstr "配置: %s" +msgstr "可配置的菜单" #: libraries/classes/Relation.php:318 -#, fuzzy -#| msgid "Reload navigation frame" msgid "Hide/show navigation items" -msgstr "刷新导航框架" +msgstr "隐藏/显示导航项目" #: libraries/classes/Relation.php:329 msgid "Saving Query-By-Example searches" -msgstr "" +msgstr "保存按示例查询搜索" #: libraries/classes/Relation.php:340 msgid "Managing Central list of columns" -msgstr "" +msgstr "管理中央列列表" #: libraries/classes/Relation.php:351 -#, fuzzy -#| msgid "Remember table's sorting" msgid "Remembering Designer Settings" -msgstr "记录表排序" +msgstr "记住设计器设置" #: libraries/classes/Relation.php:362 -#, fuzzy -#| msgid "Invalid export type" msgid "Saving export templates" -msgstr "导出类型无效" +msgstr "保存导出模板" #: libraries/classes/Relation.php:370 msgid "Quick steps to set up advanced features:" msgstr "快速设置高级功能:" #: libraries/classes/Relation.php:376 -#, fuzzy, php-format -#| msgid "" -#| "Create the needed tables with the examples/create_tables.sql." +#, php-format msgid "Create the needed tables with the %screate_tables.sql." -msgstr "通过 examples/create_tables.sql 创建必需的数据表。" +msgstr "通过 %screate_tables.sql 创建必需的数据表。" #: libraries/classes/Relation.php:381 msgid "Create a pma user and give access to these tables." @@ -10237,25 +9824,22 @@ msgstr "" "置 phpMyAdmin的储存位置 。" #: libraries/classes/Relation.php:2010 -#, fuzzy, php-format -#| msgid "Missing phpMyAdmin configuration storage tables" +#, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." -msgstr "丢失 phpMyAdmin 高级功能数据表" +msgstr "%s创建%s一个名为'phpmyadmin'的数据库,并在那里设置phpMyAdmin配置存储。" #: libraries/classes/Relation.php:2018 -#, fuzzy, php-format -#| msgid "Missing phpMyAdmin configuration storage tables" +#, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." -msgstr "丢失 phpMyAdmin 高级功能数据表" +msgstr "在当前数据库%s创建%sphpMyAdmin配置存储。" #: libraries/classes/Relation.php:2026 -#, fuzzy, php-format -#| msgid "Missing phpMyAdmin configuration storage tables" +#, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." -msgstr "丢失 phpMyAdmin 高级功能数据表" +msgstr "%s创建%s缺失的 phpMyAdmin 配置存储表。" #: libraries/classes/ReplicationGui.php:58 #: libraries/classes/ReplicationGui.php:357 @@ -10286,13 +9870,6 @@ msgid "Master configuration" msgstr "主服务器配置" #: libraries/classes/ReplicationGui.php:102 -#, fuzzy -#| msgid "" -#| "This server is not configured as master server in a replication process. " -#| "You can choose from either replicating all databases and ignoring certain " -#| "(useful if you want to replicate majority of databases) or you can choose " -#| "to ignore all databases by default and allow only certain databases to be " -#| "replicated. Please select the mode:" msgid "" "This server is not configured as a master server in a replication process. " "You can choose from either replicating all databases and ignoring some of " @@ -10300,8 +9877,8 @@ msgid "" "can choose to ignore all databases by default and allow only certain " "databases to be replicated. Please select the mode:" msgstr "" -"此服务器尚未配置为一个复制进程中的主服务器。你可以选择复制所有但忽略某些数据" -"库 (当你想复制大多数数据库时很有用) 或者仅复制某些数据库。请选择模式:" +"此服务器尚未配置为一个复制进程中的主服务器。你可以选择复制所有但忽略它们中的某些数据库 (当你想复制大多数数据库时很有用) " +"或者忽略大多数并仅复制某些数据库。请选择模式:" #: libraries/classes/ReplicationGui.php:111 msgid "Replicate all databases; Ignore:" @@ -10336,10 +9913,8 @@ msgid "Slave replication" msgstr "从复制" #: libraries/classes/ReplicationGui.php:161 -#, fuzzy -#| msgid "Insecure connection" msgid "Master connection:" -msgstr "非安全连接" +msgstr "主连接:" #: libraries/classes/ReplicationGui.php:228 msgid "Slave SQL Thread not running!" @@ -10417,10 +9992,9 @@ msgid "Skip current error" msgstr "忽略当前错误" #: libraries/classes/ReplicationGui.php:333 -#, fuzzy, php-format -#| msgid "Skip current error" +#, php-format msgid "Skip next %s errors." -msgstr "忽略当前错误" +msgstr "跳过下一个%s错误。" #: libraries/classes/ReplicationGui.php:360 #, php-format @@ -10452,10 +10026,8 @@ msgstr "" #: libraries/classes/ReplicationGui.php:424 #: libraries/classes/ReplicationGui.php:795 #: libraries/classes/Server/Privileges.php:1499 -#, fuzzy -#| msgid "User name" msgid "User name:" -msgstr "用户名" +msgstr "用户名:" #: libraries/classes/ReplicationGui.php:430 #: libraries/classes/ReplicationGui.php:799 @@ -10477,10 +10049,8 @@ msgid "Password" msgstr "密码" #: libraries/classes/ReplicationGui.php:459 -#, fuzzy -#| msgid "Port" msgid "Port:" -msgstr "端口" +msgstr "端口:" #: libraries/classes/ReplicationGui.php:543 msgid "Master status" @@ -10533,10 +10103,8 @@ msgstr "任意用户" #: libraries/classes/ReplicationGui.php:841 #: libraries/classes/ReplicationGui.php:870 #: libraries/classes/Server/Privileges.php:1636 -#, fuzzy -#| msgid "Use text field" msgid "Use text field:" -msgstr "使用文本域" +msgstr "使用文本域:" #: libraries/classes/ReplicationGui.php:835 #: libraries/classes/Server/Privileges.php:1627 @@ -10556,62 +10124,46 @@ msgid "Re-type" msgstr "重新输入" #: libraries/classes/ReplicationGui.php:886 -#, fuzzy -#| msgid "Generate password" msgid "Generate password:" -msgstr "生成密码" +msgstr "生成密码:" #: libraries/classes/ReplicationGui.php:918 msgid "" "Connection to server is disabled, please enable $cfg['AllowArbitraryServer'] " "in phpMyAdmin configuration." -msgstr "" +msgstr "与服务器的连接已被禁用,请在phpMyAdmin配置中启用$cfg['AllowArbitraryServer']。" #: libraries/classes/ReplicationGui.php:927 -#, fuzzy -#| msgid "Replication status" msgid "Replication started successfully." -msgstr "复制状态" +msgstr "复制成功启动。" #: libraries/classes/ReplicationGui.php:928 -#, fuzzy -#| msgid "Master replication" msgid "Error starting replication." -msgstr "主复制" +msgstr "启动复制时出错。" #: libraries/classes/ReplicationGui.php:931 -#, fuzzy -#| msgid "Chart generated successfully." msgid "Replication stopped successfully." -msgstr "图表生成成功。" +msgstr "复制已成功停止。" #: libraries/classes/ReplicationGui.php:932 -#, fuzzy -#| msgid "Master replication" msgid "Error stopping replication." -msgstr "主复制" +msgstr "停止复制时出错。" #: libraries/classes/ReplicationGui.php:935 -#, fuzzy -#| msgid "Replication status" msgid "Replication resetting successfully." -msgstr "复制状态" +msgstr "复制成功重置。" #: libraries/classes/ReplicationGui.php:936 -#, fuzzy -#| msgid "Master replication" msgid "Error resetting replication." -msgstr "主复制" +msgstr "重置复制时出错。" #: libraries/classes/ReplicationGui.php:939 msgid "Success." -msgstr "" +msgstr "成功。" #: libraries/classes/ReplicationGui.php:940 -#, fuzzy -#| msgid "Error" msgid "Error." -msgstr "错误" +msgstr "错误。" #: libraries/classes/ReplicationGui.php:986 msgid "Unknown error" @@ -10628,16 +10180,13 @@ msgid "" msgstr "无法读取主服务器日志。主服务器的权限设置可能有问题。" #: libraries/classes/ReplicationGui.php:1025 -#, fuzzy -#| msgid "Unable to change master" msgid "Unable to change master!" -msgstr "无法修改主服务器" +msgstr "无法修改主服务器!" #: libraries/classes/ReplicationGui.php:1029 -#, fuzzy, php-format -#| msgid "Master server changed successfully to %s" +#, php-format msgid "Master server changed successfully to %s." -msgstr "已成功修改主服务器到 %s" +msgstr "已成功修改主服务器到 %s。" #: libraries/classes/Rte/Events.php:122 libraries/classes/Rte/Events.php:131 #: libraries/classes/Rte/Events.php:162 libraries/classes/Rte/Routines.php:240 @@ -10678,11 +10227,8 @@ msgstr "已创建事件 %1$s 。" #: libraries/classes/Rte/Events.php:183 libraries/classes/Rte/Routines.php:287 #: libraries/classes/Rte/Triggers.php:159 -#, fuzzy -#| msgid "" -#| "One or more errors have occured while processing your request:" msgid "One or more errors have occurred while processing your request:" -msgstr "处理请求时发生错误:" +msgstr "处理请求时发生了一个或多个错误:" #: libraries/classes/Rte/Events.php:238 msgid "Edit event" @@ -10731,10 +10277,8 @@ msgstr "用户" #: libraries/classes/Rte/Events.php:555 libraries/classes/Rte/Routines.php:1126 #: libraries/classes/Rte/Triggers.php:438 -#, fuzzy -#| msgid "The definer must be in the \"username@hostname\" format" msgid "The definer must be in the \"username@hostname\" format!" -msgstr "用户必须是 \"用户名@主机名\" 格式" +msgstr "用户必须是 \"用户名@主机名\" 格式!" #: libraries/classes/Rte/Events.php:562 msgid "You must provide an event name!" @@ -10902,12 +10446,10 @@ msgid "Execution results of routine %s" msgstr "程序 %s 的运行结果" #: libraries/classes/Rte/Routines.php:1470 -#, fuzzy, 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" +#, 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[0] "存储过程中最后一条语句影响了 %d 行。" #: libraries/classes/Rte/Routines.php:1527 #: libraries/classes/Rte/Routines.php:1534 @@ -10984,30 +10526,27 @@ msgid "routine" msgstr "程序" #: libraries/classes/Rte/Words.php:37 -#, fuzzy -#| msgid "You do not have the necessary privileges to create a routine" msgid "You do not have the necessary privileges to create a routine." -msgstr "你不具有创建程序的必要权限" +msgstr "你不具有创建程序的必要权限。" #: libraries/classes/Rte/Words.php:40 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " "necessary privileges to edit this routine." -msgstr "" +msgstr "在数据库%2$s中找不到名称为%1$s的例程。您可能缺少编辑此例程的必要权限。" #: libraries/classes/Rte/Words.php:44 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " "necessary privileges to view/export this routine." -msgstr "" +msgstr "在数据库%2$s中找不到名称为%1$s的例程。您可能缺少查看/导出此例程的必要权限。" #: libraries/classes/Rte/Words.php:47 -#, fuzzy, php-format -#| msgid "No routine with name %1$s found in database %2$s" +#, php-format msgid "No routine with name %1$s found in database %2$s." -msgstr "在数据库 %2$s 中找不到名为 %1$s 的程序" +msgstr "在数据库 %2$s 中找不到名为 %1$s 的程序。" #: libraries/classes/Rte/Words.php:48 msgid "There are no routines to display." @@ -11027,16 +10566,13 @@ msgid "trigger" msgstr "触发器" #: libraries/classes/Rte/Words.php:59 -#, fuzzy -#| msgid "You do not have the necessary privileges to create a trigger" msgid "You do not have the necessary privileges to create a trigger." -msgstr "你不具有创建触发器的必要权限" +msgstr "你不具有创建触发器的必要权限。" #: libraries/classes/Rte/Words.php:61 -#, fuzzy, php-format -#| msgid "No trigger with name %1$s found in database %2$s" +#, php-format msgid "No trigger with name %1$s found in database %2$s." -msgstr "在数据库 %2$s 中找不到名为 %1$s 的触发器" +msgstr "在数据库 %2$s 中找不到名为 %1$s 的触发器。" #: libraries/classes/Rte/Words.php:62 msgid "There are no triggers to display." @@ -11056,16 +10592,13 @@ msgid "event" msgstr "事件" #: libraries/classes/Rte/Words.php:73 -#, fuzzy -#| msgid "You do not have the necessary privileges to create an event" msgid "You do not have the necessary privileges to create an event." -msgstr "你不具有创建事件的必要权限" +msgstr "你不具有创建事件的必要权限。" #: libraries/classes/Rte/Words.php:75 -#, fuzzy, php-format -#| msgid "No event with name %1$s found in database %2$s" +#, php-format msgid "No event with name %1$s found in database %2$s." -msgstr "在数据库 %2$s 中找不到名为 %1$s 的事件" +msgstr "在数据库 %2$s 中找不到名为 %1$s 的事件。" #: libraries/classes/Rte/Words.php:76 msgid "There are no events to display." @@ -11149,10 +10682,8 @@ msgstr "允许关闭服务器。" #: libraries/classes/Server/Privileges.php:344 #: libraries/classes/Server/Privileges.php:1331 server_privileges.php:98 -#, fuzzy -#| msgid "Allows viewing processes of all users" msgid "Allows viewing processes of all users." -msgstr "允许查看所有用户的进程" +msgstr "允许查看所有用户的进程。" #: libraries/classes/Server/Privileges.php:349 #: libraries/classes/Server/Privileges.php:1219 server_privileges.php:77 @@ -11219,17 +10750,13 @@ msgstr "允许创建视图。" #: libraries/classes/Server/Privileges.php:408 #: libraries/classes/Server/Privileges.php:1291 server_privileges.php:75 -#, fuzzy -#| msgid "Allows to set up events for the event scheduler" msgid "Allows to set up events for the event scheduler." -msgstr "允许为事件触发器设置事件" +msgstr "允许为事件触发器设置事件。" #: libraries/classes/Server/Privileges.php:413 #: libraries/classes/Server/Privileges.php:1295 server_privileges.php:116 -#, fuzzy -#| msgid "Allows creating and dropping triggers" msgid "Allows creating and dropping triggers." -msgstr "允许创建和删除触发器" +msgstr "允许创建和删除触发器。" #: libraries/classes/Server/Privileges.php:424 #: libraries/classes/Server/Privileges.php:430 @@ -11263,23 +10790,23 @@ msgstr "不需要 SSL 加密连接。" #: libraries/classes/Server/Privileges.php:742 msgid "Requires SSL-encrypted connections." -msgstr "启用SSL加密" +msgstr "需要SSL加密连接。" #: libraries/classes/Server/Privileges.php:756 msgid "Requires a valid X509 certificate." -msgstr "" +msgstr "需要有效的X509证书。" #: libraries/classes/Server/Privileges.php:781 msgid "Requires that a specific cipher method be used for a connection." -msgstr "" +msgstr "需要使用特定的密码方法进行连接。" #: libraries/classes/Server/Privileges.php:794 msgid "Requires that a valid X509 certificate issued by this CA be presented." -msgstr "" +msgstr "要求提供此CA颁发的有效X509证书。" #: libraries/classes/Server/Privileges.php:807 msgid "Requires that a valid X509 certificate with this subject be presented." -msgstr "" +msgstr "要求提供包含此主题的有效X509证书。" #: libraries/classes/Server/Privileges.php:837 server_privileges.php:89 msgid "Limits the number of queries the user may send to the server per hour." @@ -11304,28 +10831,22 @@ msgstr "限制该用户的并发连接数。" #: libraries/classes/Server/Privileges.php:3347 #: libraries/classes/Server/Privileges.php:4565 #: templates/privileges/edit_routine_privileges.twig:11 -#, fuzzy -#| msgid "Routines" msgid "Routine" -msgstr "程序" +msgstr "例程" #: libraries/classes/Server/Privileges.php:940 msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." -msgstr "" +msgstr "允许用户向其他用户提供或从其他用户中删除该例程中用户拥有的权限。" #: libraries/classes/Server/Privileges.php:947 -#, fuzzy -#| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." -msgstr "允许修改或删除储存过程。" +msgstr "允许更改和删除此例程。" #: libraries/classes/Server/Privileges.php:952 -#, fuzzy -#| msgid "Allows executing stored routines." msgid "Allows executing this routine." -msgstr "允许运行存储过程。" +msgstr "允许执行此例程。" #: libraries/classes/Server/Privileges.php:1002 #: libraries/classes/Server/Privileges.php:1171 @@ -11338,10 +10859,8 @@ msgstr "按表指定权限" #: libraries/classes/Server/Privileges.php:1181 #: libraries/classes/Server/Privileges.php:3538 #: templates/privileges/edit_routine_privileges.twig:16 -#, fuzzy -#| msgid "Note: MySQL privilege names are expressed in English" msgid "Note: MySQL privilege names are expressed in English." -msgstr "注意:MySQL 权限名称会以英文显示" +msgstr "注意:MySQL 权限名称会以英文显示。" #: libraries/classes/Server/Privileges.php:1145 msgid "Administration" @@ -11353,8 +10872,6 @@ msgid "Global privileges" msgstr "全局权限" #: libraries/classes/Server/Privileges.php:1166 -#, fuzzy -#| msgid "global" msgid "Global" msgstr "全局" @@ -11380,20 +10897,16 @@ msgstr "允许添加用户和权限而不重新载入权限表。" msgid "" "Allows user to give to other users or remove from other users the privileges " "that user possess yourself." -msgstr "" +msgstr "允许用户向其他用户提供或从其他用户中删除用户拥有的权限。" #: libraries/classes/Server/Privileges.php:1429 #: libraries/classes/Server/Privileges.php:1460 -#, fuzzy -#| msgid "Cookie authentication" msgid "Native MySQL authentication" -msgstr "Cookie 认证" +msgstr "MySQL自带身份验证" #: libraries/classes/Server/Privileges.php:1462 -#, fuzzy -#| msgid "Signon authentication" msgid "SHA256 password authentication" -msgstr "Signon 认证" +msgstr "SHA256密码验证" #: libraries/classes/Server/Privileges.php:1496 #: libraries/classes/Server/Privileges.php:3102 @@ -11411,38 +10924,30 @@ msgstr "使用文本域" msgid "" "An account already exists with the same username but possibly a different " "hostname." -msgstr "" +msgstr "已存在具有相同用户名但可能具有不同主机名的帐户。" #: libraries/classes/Server/Privileges.php:1554 -#, fuzzy -#| msgid "User name" msgid "Host name:" -msgstr "用户名" +msgstr "主机名:" #: libraries/classes/Server/Privileges.php:1559 #: libraries/classes/Server/Privileges.php:1644 #: libraries/classes/Server/Privileges.php:2563 #: libraries/classes/Server/Privileges.php:3534 -#, fuzzy -#| msgid "Log name" msgid "Host name" -msgstr "日志文件名" +msgstr "主机名" #: libraries/classes/Server/Privileges.php:1667 msgid "Do not change the password" msgstr "保持原密码" #: libraries/classes/Server/Privileges.php:1717 -#, fuzzy -#| msgid "Authentication" msgid "Authentication Plugin" -msgstr "认证" +msgstr "认证插件" #: libraries/classes/Server/Privileges.php:1724 -#, fuzzy -#| msgid "Password Hashing:" msgid "Password Hashing Method" -msgstr "密码加密方式:" +msgstr "密码加密方式" #: libraries/classes/Server/Privileges.php:2014 #, php-format @@ -11472,10 +10977,9 @@ msgid "Grant all privileges on wildcard name (username\\_%)." msgstr "给以 用户名_ 开头的数据库 (username\\_%) 授予所有权限。" #: libraries/classes/Server/Privileges.php:2195 -#, fuzzy, php-format -#| msgid "Grant all privileges on database \"%s\"." +#, php-format msgid "Grant all privileges on database %s." -msgstr "授予数据库“%s”的所有权限。" +msgstr "授予数据库 %s 所有权限。" #: libraries/classes/Server/Privileges.php:2369 #: libraries/classes/Server/Privileges.php:2443 @@ -11495,7 +10999,7 @@ msgstr "授权" #: libraries/classes/Server/Privileges.php:2581 msgid "Not enough privilege to view users." -msgstr "" +msgstr "没有足够的权限来查看用户。" #: libraries/classes/Server/Privileges.php:2600 #: libraries/classes/Server/Privileges.php:3966 @@ -11521,10 +11025,8 @@ msgid "wildcard" msgstr "通配符" #: libraries/classes/Server/Privileges.php:2693 -#, fuzzy -#| msgid "database-specific" msgid "table-specific" -msgstr "按数据库指定" +msgstr "按表指定" #: libraries/classes/Server/Privileges.php:2832 msgid "Edit privileges" @@ -11535,10 +11037,8 @@ msgid "Revoke" msgstr "撤销" #: libraries/classes/Server/Privileges.php:2859 -#, fuzzy -#| msgid "Edit server" msgid "Edit user group" -msgstr "编辑服务器" +msgstr "编辑用户组" #: libraries/classes/Server/Privileges.php:3074 msgid "… keep the old one." @@ -11569,17 +11069,15 @@ msgstr "创建具有相同权限的新用户账户然后 …" #: libraries/classes/Server/Privileges.php:3346 #: templates/privileges/edit_routine_privileges.twig:12 -#, fuzzy -#| msgid "Column-specific privileges" msgid "Routine-specific privileges" -msgstr "按字段指定权限" +msgstr "按例程指定权限" #: libraries/classes/Server/Privileges.php:3542 #: libraries/classes/Server/UserGroups.php:87 #: templates/privileges/choose_user_group.twig:4 #: templates/privileges/choose_user_group.twig:5 msgid "User group" -msgstr "" +msgstr "用户组" #: libraries/classes/Server/Privileges.php:3664 #: libraries/classes/Server/Privileges.php:4795 @@ -11652,33 +11150,20 @@ msgid "" "A user account allowing any user from localhost to connect is present. This " "will prevent other users from connecting if the host part of their account " "allows a connection from any (%) host." -msgstr "" +msgstr "存在允许来自localhost的任何用户连接的用户帐户。如果其帐户的主机部分允许来自任何(%)主机的连接,这将阻止其他用户连接。" #: libraries/classes/Server/Privileges.php:4727 -#, fuzzy, php-format -#| msgid "" -#| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " -#| "privilege tables. The content of these tables may differ from the " -#| "privileges the server uses, if they have been changed manually. In this " -#| "case, you should %sreload the privileges%s before you continue." +#, php-format msgid "" "Note: phpMyAdmin gets the users’ privileges directly from MySQL’s privilege " "tables. The content of these tables may differ from the privileges the " "server uses, if they have been changed manually. In this case, you should " "%sreload the privileges%s before you continue." msgstr "" -"注意:phpMyAdmin 直接由 MySQL 权限表取得用户权限。如果用户手动更改表,表内容" -"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权" -"限%s。" +"注意:phpMyAdmin 直接由 MySQL " +"权限表取得用户权限。如果用户手动更改表,表内容将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权限%s。" #: libraries/classes/Server/Privileges.php:4744 -#, fuzzy -#| msgid "" -#| "Note: phpMyAdmin gets the users' privileges directly from MySQL's " -#| "privilege tables. The content of these tables may differ from the " -#| "privileges the server uses, if they have been changed manually. In this " -#| "case, the privileges have to be reloaded but currently, you don't have " -#| "the RELOAD privilege." msgid "" "Note: phpMyAdmin gets the users’ privileges directly from MySQL’s privilege " "tables. The content of these tables may differ from the privileges the " @@ -11686,9 +11171,8 @@ msgid "" "privileges have to be reloaded but currently, you don't have the RELOAD " "privilege." msgstr "" -"注意:phpMyAdmin 直接由 MySQL 权限表取得用户权限。如果用户手动更改权限表,表" -"内容将可能与服务器使用的用户权限有异。在这种情况下,应当重新载入权限表,但您" -"没有RELOAD权限。" +"注意:phpMyAdmin 直接由 MySQL " +"权限表取得用户权限。如果用户手动更改权限表,表内容将可能与服务器使用的用户权限有异。在这种情况下,应当重新载入权限表,但您没有RELOAD权限。" #: libraries/classes/Server/Privileges.php:5015 msgid "You have added a new user." @@ -11696,10 +11180,8 @@ msgstr "您已添加了一个新用户。" #: libraries/classes/Server/Select.php:53 #: libraries/classes/Server/Select.php:58 -#, fuzzy -#| msgid "Current server" msgid "Current server:" -msgstr "当前服务器" +msgstr "当前服务器:" #: libraries/classes/Server/Status.php:68 #, php-format @@ -12028,16 +11510,12 @@ msgid "Instructions/Setup" msgstr "说明/设置" #: libraries/classes/Server/Status/Monitor.php:270 -#, fuzzy -#| msgid "Done rearranging/editing charts" msgid "Done dragging (rearranging) charts" -msgstr "完成排列/编辑图表" +msgstr "完成拖拽(排列)图表" #: libraries/classes/Server/Status/Monitor.php:290 -#, fuzzy -#| msgid "Enable highlighting" msgid "Enable charts dragging" -msgstr "启用高亮" +msgstr "启用图表拖拽" #: libraries/classes/Server/Status/Monitor.php:294 #: libraries/classes/Server/Status/Processes.php:38 @@ -12105,10 +11583,8 @@ msgid "per minute:" msgstr "每分钟:" #: libraries/classes/Server/Status/Queries.php:61 -#, fuzzy -#| msgid "per second" msgid "per second:" -msgstr "每秒" +msgstr "每秒:" #: libraries/classes/Server/Status/Queries.php:98 msgid "Statements" @@ -12536,7 +12012,6 @@ msgstr "" "可能设置得太小了。缓存缺失率可以由 Key_reads/Key_read_requests 计算得出。" #: libraries/classes/Server/Status/Variables.php:617 -#, fuzzy msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -12770,84 +12245,62 @@ msgstr "非睡眠状态的线程数量。" #: libraries/classes/Server/UserGroups.php:31 #, php-format msgid "Users of '%s' user group" -msgstr "" +msgstr "“%s”用户组的用户" #: libraries/classes/Server/UserGroups.php:44 msgid "No users were found belonging to this user group." -msgstr "" +msgstr "未找到属于此用户组的用户。" #: libraries/classes/Server/UserGroups.php:73 #: libraries/classes/Server/Users.php:38 -#, fuzzy -#| msgid "Users" msgid "User groups" -msgstr "用户" +msgstr "用户组" #: libraries/classes/Server/UserGroups.php:88 -#, fuzzy -#| msgid "Server version" msgid "Server level tabs" -msgstr "服务器版本" +msgstr "服务器级别标签" #: libraries/classes/Server/UserGroups.php:89 -#, fuzzy -#| msgid "Database server" msgid "Database level tabs" -msgstr "数据库服务器" +msgstr "数据库级别标签" #: libraries/classes/Server/UserGroups.php:90 -#, fuzzy -#| msgid "Table comments" msgid "Table level tabs" -msgstr "表注释" +msgstr "表级别标签" #: libraries/classes/Server/UserGroups.php:118 -#, fuzzy -#| msgid "Views" msgid "View users" -msgstr "视图" +msgstr "查看用户" #: libraries/classes/Server/UserGroups.php:154 #: libraries/classes/Server/UserGroups.php:218 -#, fuzzy -#| msgid "Add user" msgid "Add user group" -msgstr "添加用户" +msgstr "添加用户组" #: libraries/classes/Server/UserGroups.php:221 #, php-format msgid "Edit user group: '%s'" -msgstr "" +msgstr "编辑用户组:“%s”" #: libraries/classes/Server/UserGroups.php:237 -#, fuzzy -#| msgid "No privileges." msgid "User group menu assignments" -msgstr "无权限。" +msgstr "用户组菜单分配" #: libraries/classes/Server/UserGroups.php:245 -#, fuzzy -#| msgid "Column names: " msgid "Group name:" -msgstr "字段名: " +msgstr "组名:" #: libraries/classes/Server/UserGroups.php:282 -#, fuzzy -#| msgid "Server version" msgid "Server-level tabs" -msgstr "服务器版本" +msgstr "服务器等级标签" #: libraries/classes/Server/UserGroups.php:285 -#, fuzzy -#| msgid "Database server" msgid "Database-level tabs" -msgstr "数据库服务器" +msgstr "数据库等级标签" #: libraries/classes/Server/UserGroups.php:288 -#, fuzzy -#| msgid "Table comments" msgid "Table-level tabs" -msgstr "表注释" +msgstr "表等级标签" #: libraries/classes/Sql.php:248 libraries/classes/Util.php:1145 #: templates/console/display.twig:31 templates/console/display.twig:175 @@ -12855,65 +12308,48 @@ msgid "Profiling" msgstr "性能分析" #: libraries/classes/Sql.php:251 -#, fuzzy -#| msgid "Data file grow size" msgid "Detailed profile" -msgstr "数据文件增长大小" +msgstr "详细资料" #: libraries/classes/Sql.php:256 libraries/classes/Sql.php:272 -#, fuzzy -#| msgctxt "Start of recurring event" -#| msgid "Start" msgid "State" -msgstr "起始时间" +msgstr "状态" #: libraries/classes/Sql.php:269 msgid "Summary by state" -msgstr "" +msgstr "状态概要" #: libraries/classes/Sql.php:275 -#, fuzzy -#| msgid "Total time:" msgid "Total Time" -msgstr "总时间:" +msgstr "总时间" #: libraries/classes/Sql.php:277 -#, fuzzy -#| msgid "Time" msgid "% Time" -msgstr "时间" +msgstr "% 时间" #: libraries/classes/Sql.php:279 -#, fuzzy -#| msgid "Close" msgid "Calls" -msgstr "关闭" +msgstr "请求" #: libraries/classes/Sql.php:281 -#, fuzzy -#| msgid "Time" msgid "ø Time" -msgstr "时间" +msgstr "ø 时间" #: libraries/classes/Sql.php:586 libraries/classes/Sql.php:604 msgid "Bookmark this SQL query" msgstr "将此 SQL 查询加为书签" #: libraries/classes/Sql.php:590 -#, fuzzy -#| msgid "Label" msgid "Label:" -msgstr "标签" +msgstr "标签:" #: libraries/classes/Sql.php:597 libraries/classes/SqlQueryForm.php:316 msgid "Let every user access this bookmark" msgstr "让所有用户均可访问此书签" #: libraries/classes/Sql.php:813 -#, fuzzy -#| msgid "Bookmark not created" msgid "Bookmark not created!" -msgstr "未创建书签" +msgstr "未创建书签!" #: libraries/classes/Sql.php:923 #, php-format @@ -12925,24 +12361,18 @@ msgid "Showing as PHP code" msgstr "显示为 PHP 代码" #: libraries/classes/Sql.php:1775 -#, fuzzy, php-format -#| msgid "" -#| "This table does not contain a unique column. Grid edit, checkbox, Edit, " -#| "Copy and Delete features are not available." +#, php-format msgid "" "Current selection does not contain a unique column. Grid edit, checkbox, " "Edit, Copy and Delete features are not available. %s" -msgstr "该表没有唯一字段。单元格编辑、复选框、编辑、复制和删除无法正常使用。" +msgstr "当前所选内容没有包含唯一字段。单元格编辑、复选框、编辑、复制和删除无法正常使用。%s" #: libraries/classes/Sql.php:1789 -#, fuzzy, php-format -#| msgid "" -#| "This table does not contain a unique column. Grid edit, checkbox, Edit, " -#| "Copy and Delete features are not available." +#, php-format msgid "" "Current selection does not contain a unique column. Grid edit, Edit, Copy " "and Delete features may result in undesired behavior. %s" -msgstr "该表没有唯一字段。单元格编辑、复选框、编辑、复制和删除无法正常使用。" +msgstr "当前所选内容没有包含唯一字段。单元格编辑、复选框、编辑、复制和删除可能会导致无法预料的情形发生。%s" #: libraries/classes/Sql.php:1831 #, php-format @@ -12950,10 +12380,9 @@ msgid "Problems with indexes of table `%s`" msgstr "数据表 `%s` 的索引存在问题" #: libraries/classes/SqlQueryForm.php:140 -#, fuzzy, php-format -#| msgid "Run SQL query/queries on server %s" +#, php-format msgid "Run SQL query/queries on server “%s”" -msgstr "在服务器 %s 运行 SQL 查询" +msgstr "在服务器 “%s” 运行 SQL 查询" #: libraries/classes/SqlQueryForm.php:157 #, php-format @@ -12961,10 +12390,9 @@ msgid "Run SQL query/queries on database %s" msgstr "在数据库 %s 运行 SQL 查询" #: libraries/classes/SqlQueryForm.php:178 -#, fuzzy, php-format -#| msgid "Run SQL query/queries on database %s" +#, php-format msgid "Run SQL query/queries on table %s" -msgstr "在数据库 %s 运行 SQL 查询" +msgstr "在表 %s 运行 SQL 查询" #: libraries/classes/SqlQueryForm.php:248 setup/frames/index.inc.php:254 #: templates/console/display.twig:7 @@ -12973,19 +12401,15 @@ msgstr "清除" #: libraries/classes/SqlQueryForm.php:254 msgid "Get auto-saved query" -msgstr "" +msgstr "获取自动保存的查询" #: libraries/classes/SqlQueryForm.php:260 -#, fuzzy -#| msgid "Bad parameters!" msgid "Bind parameters" -msgstr "参数无效!" +msgstr "绑定参数" #: libraries/classes/SqlQueryForm.php:308 -#, fuzzy -#| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" -msgstr "将此 SQL 查询加为书签" +msgstr "将此 SQL 查询加为书签:" #: libraries/classes/SqlQueryForm.php:322 msgid "Replace existing bookmark of same name" @@ -13001,7 +12425,7 @@ msgstr "在此再次显示此查询" #: libraries/classes/SqlQueryForm.php:363 msgid "Rollback when finished" -msgstr "" +msgstr "完成后回滚" #: libraries/classes/SqlQueryForm.php:410 msgid "shared" @@ -13107,10 +12531,9 @@ msgid "Error creating foreign key on %1$s (check data types)" msgstr "在 %1$s 创建外键时发生错误 (检查数据类型)" #: libraries/classes/Template.php:127 -#, fuzzy, php-format -#| msgid "Error while loading the search." +#, php-format msgid "Error while working with template cache: %s" -msgstr "加载搜索时出现错误。" +msgstr "使用模板缓存时出错:%s" #: libraries/classes/Theme.php:186 #, php-format @@ -13151,10 +12574,8 @@ msgid "Updated" msgstr "更新" #: libraries/classes/Tracking.php:169 libraries/classes/Tracking.php:233 -#, fuzzy -#| msgid "Create version" msgid "Delete version" -msgstr "创建版本" +msgstr "删除版本" #: libraries/classes/Tracking.php:170 libraries/classes/Tracking.php:332 #: templates/database/tracking/tracked_tables.twig:60 @@ -13179,8 +12600,7 @@ msgid "No data" msgstr "无数据" #: libraries/classes/Tracking.php:449 libraries/classes/Tracking.php:499 -#, fuzzy, php-format -#| msgid "Show %s with dates from %s to %s by user %s %s" +#, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "显示自 %2$s 起至 %3$s 用户 %4$s 执行的 %1$s %5$s" @@ -13256,10 +12676,9 @@ msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "对%1$s 的追踪从版本 %2$s 已停用。" #: libraries/classes/Tracking.php:995 -#, fuzzy, php-format -#| msgid "Create version %1$s of %2$s" +#, php-format msgid "Version %1$s of %2$s was deleted." -msgstr "为 %2$s 创建版本 %1$s" +msgstr "%2$s的版本%1$s被删除了。" #: libraries/classes/Tracking.php:1026 #, php-format @@ -13617,10 +13036,9 @@ msgid "Missing parameter:" msgstr "缺少参数:" #: libraries/classes/Util.php:2416 -#, fuzzy, php-format -#| msgid "Jump to database \"%s\"." +#, php-format msgid "Jump to database “%s”." -msgstr "转到数据库 \"%s\"。" +msgstr "转到数据库 “%s”。" #: libraries/classes/Util.php:2441 #, php-format @@ -13651,19 +13069,19 @@ msgstr "执行" #: libraries/classes/Util.php:3829 msgid "SSL is not being used" -msgstr "" +msgstr "SSL未被使用" #: libraries/classes/Util.php:3834 msgid "SSL is used with disabled verification" -msgstr "" +msgstr "SSL在禁用验证的状态下使用" #: libraries/classes/Util.php:3836 msgid "SSL is used without certification authority" -msgstr "" +msgstr "SSL在没有证书颁发机构的情况下使用" #: libraries/classes/Util.php:3839 msgid "SSL is used" -msgstr "" +msgstr "已使用SSL" #: libraries/classes/Util.php:3960 msgid "Users" @@ -13686,7 +13104,7 @@ msgstr "ZIP 包中有错误:" msgid "" "Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to " "access phpMyAdmin." -msgstr "" +msgstr "无法设置会话cookie。也许您使用HTTP而不是HTTPS来访问phpMyAdmin。" #: libraries/common.inc.php:338 msgid "Invalid authentication method set in configuration:" @@ -13818,10 +13236,8 @@ msgid "Manage your settings" msgstr "管理我的设置" #: libraries/user_preferences.inc.php:38 -#, fuzzy -#| msgid "Config authentication" msgid "Two-factor authentication" -msgstr "Config 认证" +msgstr "双因素身份验证" #: libraries/user_preferences.inc.php:63 prefs_manage.php:296 msgid "Configuration has been saved." @@ -13840,23 +13256,19 @@ msgstr "致命错误:导航只能通过AJAX访问" #: prefs_forms.php:28 setup/frames/form.inc.php:21 msgid "Incorrect form specified!" -msgstr "" +msgstr "指定的表单不正确!" #: prefs_forms.php:80 -#, fuzzy -#| msgid "Cannot save settings, submitted form contains errors" msgid "Cannot save settings, submitted form contains errors!" -msgstr "无法保存设置,提交的表单中有错误" +msgstr "无法保存设置,提交的表单中有错误!" #: prefs_manage.php:50 -#, fuzzy -#| msgid "Missing phpMyAdmin configuration storage tables" msgid "phpMyAdmin configuration snippet" -msgstr "丢失 phpMyAdmin 高级功能数据表" +msgstr "phpMyAdmin配置代码段" #: prefs_manage.php:51 msgid "Paste it to your config.inc.php" -msgstr "" +msgstr "将它粘贴到您的config.inc.php" #: prefs_manage.php:91 msgid "Could not import configuration" @@ -13907,10 +13319,8 @@ msgstr "" "你可以通过修改 config.inc.php 文件进行更多设置,如通过使用%s安装脚本%s。" #: prefs_manage.php:312 -#, fuzzy -#| msgid "Save as file" msgid "Save as PHP file" -msgstr "保存为文件" +msgstr "保存为PHP文件" #: prefs_manage.php:317 msgid "Save to browser's storage" @@ -13929,16 +13339,12 @@ msgid "You can reset all your settings and restore them to default values." msgstr "你可以重置并将所有设置恢复为默认值。" #: prefs_twofactor.php:29 -#, fuzzy -#| msgid "Internal relation added" msgid "Two-factor authentication has been removed." -msgstr "已添加内联关系" +msgstr "双因素身份验证已被删除。" #: prefs_twofactor.php:39 -#, fuzzy -#| msgid "Invalid authentication method set in configuration:" msgid "Two-factor authentication has been configured." -msgstr "配置文件中设置的认证方式无效:" +msgstr "已配置双因素身份验证。" #: server_export.php:25 msgid "View dump (schema) of databases" @@ -13950,24 +13356,22 @@ msgid "No Privileges" msgstr "无权限" #: server_privileges.php:150 -#, fuzzy -#| msgid "You do not have the necessary privileges to create a trigger" msgid "You do not have privileges to manipulate with the users!" -msgstr "你不具有创建触发器的必要权限" +msgstr "您没有权限与用户进行操作!" #: server_privileges.php:164 msgid "" "Username and hostname didn't change. If you only want to change the " "password, 'Change password' tab should be used." -msgstr "" +msgstr "用户名和主机名不会更改。如果您只想更改密码,则应使用“更改密码”选项卡。" #: server_status.php:35 msgid "Not enough privilege to view server status." -msgstr "" +msgstr "没有足够的权限来查看服务器状态。" #: server_status_advisor.php:33 msgid "Not enough privilege to view the advisor." -msgstr "" +msgstr "没有足够的权限来查看建议。" #: server_status_processes.php:33 #, php-format @@ -13982,11 +13386,11 @@ msgstr "phpMyAdmin 无法杀死线程 %s。该线程可能已经关闭。" #: server_status_queries.php:43 msgid "Not enough privilege to view query statistics." -msgstr "" +msgstr "没有足够的权限来查看查询统计信息。" #: server_status_variables.php:52 msgid "Not enough privilege to view status variables." -msgstr "" +msgstr "没有足够的权限来查看状态变量。" #: setup/frames/config.inc.php:17 setup/frames/index.inc.php:189 msgid "Configuration file" @@ -14003,14 +13407,10 @@ msgid "" msgstr "你现在没有使用安全连接,所有数据(包括敏感信息,如密码)均为明文传输!" #: setup/frames/index.inc.php:54 -#, fuzzy -#| msgid "" -#| "If your server is also configured to accept HTTPS requests follow [a@" -#| "%s]this link[/a] to use a secure connection." msgid "" "If your server is also configured to accept HTTPS requests follow this link " "to use a secure connection." -msgstr "如果你的服务器已经配置好支持 HTTPS,请[a@%s]点击这里[/a]使用安全连接。" +msgstr "如果你的服务器已经配置好支持 HTTPS,请点击这里使用安全连接。" #: setup/frames/index.inc.php:58 msgid "Insecure connection" @@ -14029,10 +13429,8 @@ msgstr "" "除 config 文件夹。" #: setup/frames/index.inc.php:97 -#, fuzzy -#| msgid "Configuration saved." msgid "Configuration not saved!" -msgstr "配置已保存。" +msgstr "配置没有保存!" #: setup/frames/index.inc.php:100 msgid "" @@ -14105,7 +13503,7 @@ msgstr "添加服务器" #: setup/index.php:18 msgid "Configuration already exists, setup is disabled!" -msgstr "" +msgstr "配置已存在,设置已禁用!" #: setup/index.php:28 msgid "Wrong GET file attribute value" @@ -14165,7 +13563,7 @@ msgstr "无效数据" #: setup/validate.php:32 #, php-format msgid "Wrong data or no validation for %s" -msgstr "" +msgstr "%s是错误的数据或没有验证" #: tbl_create.php:36 tbl_get_field.php:31 #, php-format @@ -14188,13 +13586,11 @@ msgstr "表名无效" #: tbl_replace.php:243 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" -msgstr "" +msgstr "行:%1$s,列:%2$s,错误:%3$s" #: tbl_row_action.php:73 -#, fuzzy -#| msgid "No rows selected" msgid "No row selected." -msgstr "没有选中任何行" +msgstr "没有选中任何行。" #: tbl_tracking.php:34 #, php-format @@ -14202,16 +13598,12 @@ msgid "Tracking of %s is activated." msgstr "%s 的追踪已启用。" #: tbl_tracking.php:103 -#, fuzzy -#| msgid "The selected users have been deleted successfully." msgid "Tracking versions deleted successfully." -msgstr "已成功删除选中的用户。" +msgstr "跟踪版本已成功删除。" #: tbl_tracking.php:108 -#, fuzzy -#| msgid "No rows selected" msgid "No versions selected." -msgstr "没有选中任何行" +msgstr "没有选择版本。" #: tbl_tracking.php:139 msgid "SQL statements executed." @@ -14230,30 +13622,22 @@ msgid "Available MIME types" msgstr "可用的 MIME 类型" #: transformation_overview.php:39 -#, fuzzy -#| msgid "Available transformations" msgid "Available browser display transformations" -msgstr "可用的转换" +msgstr "可用的浏览器显示转换" #: transformation_overview.php:40 -#, fuzzy -#| msgid "Available transformations" msgid "Available input transformations" -msgstr "可用的转换" +msgstr "可用的输入转换" #: transformation_overview.php:43 #: templates/columns_definitions/table_fields_definitions.twig:78 -#, fuzzy -#| msgid "Browser transformation" msgid "Browser display transformation" -msgstr "浏览器转换" +msgstr "浏览器显示转换" #: transformation_overview.php:44 #: templates/columns_definitions/table_fields_definitions.twig:89 -#, fuzzy -#| msgid "Browser transformation" msgid "Input transformation" -msgstr "浏览器转换" +msgstr "输入转换" #: transformation_overview.php:55 msgctxt "for MIME transformation" @@ -14278,22 +13662,16 @@ msgid "Check tables having overhead" msgstr "仅选择多余" #: templates/database/structure/check_all_tables.twig:10 -#, fuzzy -#| msgid "Copy" msgid "Copy table" -msgstr "复制" +msgstr "复制表格" #: templates/database/structure/check_all_tables.twig:11 -#, fuzzy -#| msgid "Show color" msgid "Show create" -msgstr "显示颜色" +msgstr "显示创建" #: templates/database/structure/check_all_tables.twig:25 -#, fuzzy -#| msgid "Add prefix" msgid "Prefix" -msgstr "添加前缀" +msgstr "前缀" #: templates/database/structure/check_all_tables.twig:26 msgid "Add prefix to table" @@ -14304,38 +13682,30 @@ msgid "Replace table prefix" msgstr "修改表前缀" #: templates/database/structure/check_all_tables.twig:33 -#, fuzzy -#| msgid "CHAR textarea columns" msgid "Add columns to central list" -msgstr "CHAR 文本框列" +msgstr "将列添加到中央列表" #: templates/database/structure/check_all_tables.twig:34 msgid "Remove columns from central list" -msgstr "" +msgstr "从中央列表中删除列" #: templates/database/structure/check_all_tables.twig:35 -#, fuzzy -#| msgid "CHAR textarea columns" msgid "Make consistent with central list" -msgstr "CHAR 文本框列" +msgstr "与中央列表保持一致" #: templates/prefs_twofactor_confirm.twig:2 -#, fuzzy -#| msgid "Config authentication" msgid "Confirm disabling two-factor authentication" -msgstr "Config 认证" +msgstr "确认禁用双因素身份验证" #: templates/prefs_twofactor_confirm.twig:5 msgid "" "By disabling two factor authentication you will be again able to login using " "password only." -msgstr "" +msgstr "通过禁用双因素身份验证,您将仅需使用密码登录。" #: templates/prefs_twofactor_confirm.twig:9 templates/prefs_twofactor.twig:37 -#, fuzzy -#| msgid "Config authentication" msgid "Disable two-factor authentication" -msgstr "Config 认证" +msgstr "禁用双因素身份验证" #: templates/database/tracking/tracked_tables.twig:2 msgid "Tracked tables" @@ -14378,14 +13748,10 @@ msgid "File may be compressed (%s) or uncompressed." msgstr "文件可能已压缩 (%s) 或未压缩。" #: templates/display/import/import.twig:58 -#, fuzzy -#| msgid "" -#| "A compressed file's name must end in .[format].[compression]. " -#| "Example: .sql.zip" msgid "" "A compressed file's name must end in .[format].[compression]. Example: .sql.zip" -msgstr "压缩文件名必须以 .[格式].[压缩方式] 结尾。如:.sql.zip" +msgstr "压缩文件名必须以 .[格式].[压缩方式] 结尾。如:.sql.zip" #: templates/display/import/import.twig:69 #: templates/display/import/import.twig:84 @@ -14412,26 +13778,15 @@ msgid "" msgstr "上一个导入操作超时,随后重新提交将会从 %d 处开始。" #: templates/display/import/import.twig:137 -#, fuzzy -#| msgid "" -#| "Allow the interruption of an import in case the script detects it is " -#| "close to the PHP timeout limit. (This might be a good way to import " -#| "large files, however it can break transactions.)" msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. (This might be a good way to import large " "files, however it can break transactions.)" -msgstr "" -"在导入时脚本若检测到可能需要花费很长时间(接近PHP超时的限定)则允许中断。" -"(尽管这会中断事务,但在导入大文件时是个很好的方法。)" +msgstr "在导入时脚本若检测到接近PHP超时时限(即需要花费很长时间)则允许中断。(这在导入大文件时是个很好的方法,不过这会中断事务)" #: templates/display/import/import.twig:144 -#, fuzzy -#| msgid "" -#| "Skip this number of queries (for SQL) or lines (for other formats), " -#| "starting from the first one:" msgid "Skip this number of queries (for SQL) starting from the first one:" -msgstr "从第一个开始跳过的查询数(SQL用)或行数(其他用):" +msgstr "从第一个开始跳过这些数量的查询(对于SQL):" #: templates/display/import/import.twig:161 msgid "Other options:" @@ -14509,13 +13864,11 @@ msgstr "已禁用" #: templates/export/alias_add.twig:4 msgid "Define new aliases" -msgstr "" +msgstr "定义新别名" #: templates/export/alias_add.twig:9 -#, fuzzy -#| msgid "Select database" msgid "Select database:" -msgstr "选择数据库" +msgstr "选择数据库:" #: templates/export/alias_add.twig:15 msgid "New database name" @@ -14528,20 +13881,16 @@ msgid "Add" msgstr "添加" #: templates/export/alias_add.twig:23 -#, fuzzy -#| msgid "Select table" msgid "Select table:" -msgstr "选择表" +msgstr "选择表:" #: templates/export/alias_add.twig:29 msgid "New table name" msgstr "新数据表名称" #: templates/export/alias_add.twig:37 -#, fuzzy -#| msgid "Select a column." msgid "Select column:" -msgstr "选择字段。" +msgstr "选择字段:" #: templates/export/alias_add.twig:43 msgid "New column name" @@ -14559,10 +13908,9 @@ msgstr "输出:" #: templates/display/export/options_quick_export.twig:8 #: templates/display/export/options_output_save_dir.twig:5 -#, fuzzy, php-format -#| msgid "Save on server in the directory %s" +#, php-format msgid "Save on server in the directory %s" -msgstr "保存到务器上的 %s 文件夹中" +msgstr "保存到务器上的 %s 文件夹中" #: templates/table/insert/continue_insertion_form.twig:18 #, php-format @@ -14573,13 +13921,12 @@ msgstr "继续插入 %s 行" msgid "" "Please connect your FIDO U2F device into your computer's USB port. Then " "confirm registration on the device." -msgstr "" +msgstr "请将您的FIDO U2F设备连接到计算机的USB端口。然后在设备上确认注册。" #: templates/server/databases/table_row.twig:13 -#, fuzzy, php-format -#| msgid "Jump to database" +#, php-format msgid "Jump to database '%s'" -msgstr "转到数据库" +msgstr "转到数据库\"%s\"" #: templates/server/databases/table_row.twig:61 #, php-format @@ -14611,10 +13958,8 @@ msgstr "运算符" #: templates/database/designer/side_menu.twig:13 #: templates/database/designer/side_menu.twig:19 -#, fuzzy -#| msgid "Showing tables" msgid "Show/Hide tables list" -msgstr "正在显示表" +msgstr "显示/隐藏表格列表" #: templates/database/designer/side_menu.twig:23 #: templates/database/designer/side_menu.twig:29 @@ -14628,17 +13973,13 @@ msgstr "退出全屏" #: templates/database/designer/side_menu.twig:42 #: templates/database/designer/side_menu.twig:46 -#, fuzzy -#| msgid "New name" msgid "New page" -msgstr "新名称" +msgstr "新页面" #: templates/database/designer/side_menu.twig:71 #: templates/database/designer/side_menu.twig:74 -#, fuzzy -#| msgid "Select page" msgid "Delete pages" -msgstr "选择页" +msgstr "删除页" #: templates/database/designer/side_menu.twig:78 #: templates/database/designer/side_menu.twig:81 @@ -14649,8 +13990,6 @@ msgstr "新建数据表" #: templates/database/designer/side_menu.twig:85 #: templates/database/designer/side_menu.twig:88 #: templates/database/designer/new_relation_panel.twig:22 -#, fuzzy -#| msgid "Create relation" msgid "Create relationship" msgstr "创建关系" @@ -14691,17 +14030,13 @@ msgstr "反向收缩/展开" #: templates/database/designer/side_menu.twig:146 #: templates/database/designer/side_menu.twig:149 -#, fuzzy -#| msgid "Toggle relation lines" msgid "Toggle relationship lines" msgstr "显示/隐藏关系线" #: templates/database/designer/side_menu.twig:154 #: templates/database/designer/side_menu.twig:157 -#, fuzzy -#| msgid "Export all" msgid "Export schema" -msgstr "全部导出" +msgstr "导出架构" #: templates/database/designer/side_menu.twig:165 #: templates/database/designer/side_menu.twig:168 @@ -14715,24 +14050,18 @@ msgstr "移动菜单" #: templates/database/designer/side_menu.twig:181 #: templates/database/designer/side_menu.twig:186 -#, fuzzy -#| msgid "Partial texts" msgid "Pin text" -msgstr "部分内容" +msgstr "固定文字" #: templates/server/sub_page_header.twig:2 msgid "Server variables and settings" msgstr "服务器变量和设置" #: templates/server/sub_page_header.twig:2 -#, fuzzy -#| msgid "Storage Engines" msgid "Storage engines" msgstr "存储引擎" #: templates/server/sub_page_header.twig:2 -#, fuzzy -#| msgid "Character Sets and Collations" msgid "Character sets and collations" msgstr "字符集和排序规则" @@ -14819,8 +14148,6 @@ msgid "No databases" msgstr "无数据库" #: templates/table/structure/row_stats_table.twig:2 -#, fuzzy -#| msgid "Row Statistics" msgid "Row statistics" msgstr "行统计" @@ -14880,16 +14207,12 @@ msgid "use this for future exports" msgstr "以后也使用此设置" #: templates/database/designer/database_tables.twig:31 -#, fuzzy -#| msgid "Move columns" msgid "Show/hide columns" -msgstr "移动字段" +msgstr "显示/隐藏字段" #: templates/database/designer/database_tables.twig:39 -#, fuzzy -#| msgid "Table structure" msgid "See table structure" -msgstr "表结构" +msgstr "显示表结构" #: templates/table/tracking/activate_deactivate.twig:7 #, php-format @@ -14911,10 +14234,8 @@ msgstr "立即禁用" #: templates/table/structure/partition_definition_form.twig:6 #: templates/table/structure/display_partitions.twig:141 -#, fuzzy -#| msgid "Remove partitioning" msgid "Edit partitioning" -msgstr "删除分区" +msgstr "编辑分区" #: templates/table/structure/display_structure.twig:191 #: templates/table/structure/display_partitions.twig:4 @@ -14945,12 +14266,10 @@ msgid "New name" msgstr "新名称" #: templates/database/structure/table_header.twig:27 -#, fuzzy -#| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." msgid "" "May be approximate. Click on the number to get the exact count. See " "[doc@faq3-11]FAQ 3.11[/doc]." -msgstr "可能是近似值。参见[doc@faq3-11]常见问题 3.11[/doc]。" +msgstr "可能是近似值。单击数字以获得确切的计数。参见[doc@faq3-11]常见问题 3.11[/doc]。" #: templates/database/structure/table_header.twig:38 #: templates/table/index_form.twig:118 @@ -14970,10 +14289,8 @@ msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "要使用通配符 _ 和 % 本身,应使用 \\ 转义。" #: templates/database/structure/favorite_anchor.twig:4 -#, fuzzy -#| msgid "Add this series" msgid "Add to Favorites" -msgstr "添加该数据" +msgstr "添加到收藏" #: templates/columns_definitions/column_default.twig:3 msgctxt "for default" @@ -15003,17 +14320,13 @@ msgid "No preview available." msgstr "没有可用的预览。" #: templates/theme_preview.twig:13 -#, fuzzy -#| msgid "take it" msgid "Take it" -msgstr "确定" +msgstr "取用它" #: templates/columns_definitions/column_virtuality.twig:29 #: templates/table/structure/display_partitions.twig:26 -#, fuzzy -#| msgid "Compression" msgid "Expression" -msgstr "压缩" +msgstr "表达式" #: templates/prefs_autoload.twig:7 msgid "" @@ -15022,26 +14335,20 @@ msgid "" msgstr "你的浏览器中有当前域的 phpMyAdmin 设置。是否导入到当前会话中?" #: templates/prefs_autoload.twig:13 -#, fuzzy -#| msgid "Delete tracking" msgid "Delete settings" -msgstr "删除追踪数据" +msgstr "删除设置" #: templates/database/designer/delete_relation_panel.twig:21 -#, fuzzy -#| msgid "Delete relation" msgid "Delete relationship" msgstr "删除关系" #: templates/database/structure/show_create.twig:2 -#, fuzzy -#| msgid "Show SQL queries" msgid "Showing create queries" -msgstr "显示 SQL 查询" +msgstr "显示创建查询" #: templates/login/twofactor.twig:5 msgid "Verify" -msgstr "" +msgstr "验证" #: templates/table/search/replace_preview.twig:13 msgid "Find and replace - preview" @@ -15066,16 +14373,14 @@ msgstr "替换" #: templates/login/twofactor/application.twig:2 #: templates/login/twofactor/application_configure.twig:9 -#, fuzzy -#| msgid "Authentication" msgid "Authentication code:" -msgstr "认证" +msgstr "认证代码:" #: templates/login/twofactor/application.twig:4 msgid "" "Open the two-factor authentication app on your device to view your " "authentication code and verify your identity." -msgstr "" +msgstr "在您的设备上打开双因素身份验证应用,以查看您的身份验证代码并验证您的身份。" #: templates/table/tracking/create_version.twig:11 #, php-format @@ -15083,10 +14388,9 @@ msgid "Create version %1$s of %2$s" msgstr "为 %2$s 创建版本 %1$s" #: templates/table/tracking/create_version.twig:16 -#, fuzzy, php-format -#| msgid "Create version" +#, php-format msgid "Create version %1$s" -msgstr "创建版本" +msgstr "创建版本%1$s" #: templates/table/tracking/create_version.twig:20 msgid "Track these data definition statements:" @@ -15112,34 +14416,28 @@ msgstr "追踪表" #: templates/table/structure/optional_action_links.twig:22 msgid "Normalize" -msgstr "" +msgstr "规范化" #: templates/table/structure/optional_action_links.twig:28 -#, fuzzy msgid "Track view" -msgstr "显示追逐" +msgstr "跟踪视图" #: templates/columns_definitions/column_name.twig:4 -#, fuzzy, php-format -#| msgid "Select referenced key" +#, php-format msgid "Referenced by %s." -msgstr "选择外键" +msgstr "参考%s。" #: templates/columns_definitions/column_name.twig:12 -#, fuzzy -#| msgid "Select Foreign Key" msgid "Is a foreign key." -msgstr "选择外键" +msgstr "是外键。" #: templates/columns_definitions/column_name.twig:40 -#, fuzzy -#| msgid "Remove column(s)" msgid "Pick from Central Columns" -msgstr "删除字段" +msgstr "从中央列中挑选" #: templates/columns_definitions/column_length.twig:9 msgid "Edit ENUM/SET values" -msgstr "" +msgstr "编辑ENUM / SET值" #: templates/database/multi_table_query/form.twig:1 msgid "Query window" @@ -15147,84 +14445,60 @@ msgstr "查询窗口" #: templates/database/multi_table_query/form.twig:18 #: templates/database/multi_table_query/form.twig:106 -#, fuzzy -#| msgid "Select table" msgid "select table" msgstr "选择表" #: templates/database/multi_table_query/form.twig:25 #: templates/database/multi_table_query/form.twig:114 -#, fuzzy -#| msgid "Select a column." msgid "select column" -msgstr "选择字段。" +msgstr "选择字段" #: templates/database/multi_table_query/form.twig:31 -#, fuzzy -#| msgid "Tables" msgid "Table alias" -msgstr "表" +msgstr "表别名" #: templates/database/multi_table_query/form.twig:32 -#, fuzzy -#| msgid "Column names" msgid "Column alias" -msgstr "字段名" +msgstr "字段别名" #: templates/database/multi_table_query/form.twig:35 -#, fuzzy -#| msgid "Use this column to label each point" msgid "Use this column in criteria" -msgstr "使用该字段标记每个点" +msgstr "在条件中使用此列" #: templates/database/multi_table_query/form.twig:38 -#, fuzzy -#| msgid "Criteria:" msgid "criteria" -msgstr "条件:" +msgstr "条件" #: templates/database/multi_table_query/form.twig:52 -#, fuzzy -#| msgid "Add %s" msgid "Add as" -msgstr "添加 %s" +msgstr "添加为" #: templates/database/multi_table_query/form.twig:97 -#, fuzzy -#| msgid "Alter column(s)" msgid "Another column" -msgstr "修改字段" +msgstr "另一个字段" #: templates/database/multi_table_query/form.twig:125 msgid "Enter criteria as free text" -msgstr "" +msgstr "以自由文本输入条件" #: templates/database/multi_table_query/form.twig:133 -#, fuzzy -#| msgid "Remove redundant columns" msgid "Remove this column" -msgstr "删除冗余的字段" +msgstr "删除此列" #: templates/database/multi_table_query/form.twig:143 #: templates/table/relation/foreign_key_row.twig:91 -#, fuzzy -#| msgid "Add column" msgid "+ Add column" -msgstr "添加字段" +msgstr "+ 添加字段" #: templates/database/multi_table_query/form.twig:160 -#, fuzzy -#| msgid "Update Query" msgid "Update query" msgstr "更新查询" #: templates/table/tracking/report_table.twig:4 #: templates/table/tracking/structure_snapshot_columns.twig:5 -#, fuzzy -#| msgid "#" msgctxt "Number" msgid "#" -msgstr "查询数量" +msgstr "#" #: templates/table/tracking/report_table.twig:5 msgid "Date" @@ -15235,10 +14509,8 @@ msgid "Username" msgstr "用户名" #: templates/export/alias_item.twig:8 -#, fuzzy -#| msgid "Remote server" msgid "Remove" -msgstr "远程服务器" +msgstr "移除" #: templates/table/browse_foreigners/column_element.twig:4 msgid "Use this value" @@ -15366,102 +14638,71 @@ msgid "" msgstr "浏览设置,使按Shift+Enter键执行输入和插入新行作为永久设置。" #: templates/columns_definitions/partitions.twig:17 -#, fuzzy -#| msgid "partitioned" msgid "Partition by:" -msgstr "已分区" +msgstr "分区来源:" #: templates/columns_definitions/partitions.twig:32 #: templates/columns_definitions/partitions.twig:60 -#, fuzzy -#| msgid "Values for column %s" msgid "Expression or column list" -msgstr "字段 %s 的值" +msgstr "表达式或列的列表" #: templates/columns_definitions/partitions.twig:37 -#, fuzzy -#| msgid "Partition %s" msgid "Partitions:" -msgstr "分区 %s" +msgstr "分区:" #: templates/columns_definitions/partitions.twig:45 -#, fuzzy -#| msgid "partitioned" msgid "Subpartition by:" -msgstr "已分区" +msgstr "子分区来源:" #: templates/columns_definitions/partitions.twig:65 -#, fuzzy -#| msgid "partitioned" msgid "Subpartitions:" -msgstr "已分区" +msgstr "子分区:" #: templates/columns_definitions/partitions.twig:76 #: templates/table/structure/display_partitions.twig:24 -#, fuzzy -#| msgid "Partition %s" msgid "Partition" -msgstr "分区 %s" +msgstr "分区" #: templates/columns_definitions/partitions.twig:78 -#, fuzzy -#| msgid "Value" msgid "Values" msgstr "值" #: templates/columns_definitions/partitions.twig:82 -#, fuzzy -#| msgid "partitioned" msgid "Subpartition" -msgstr "已分区" +msgstr "子分区" #: templates/columns_definitions/partitions.twig:84 -#, fuzzy -#| msgid "Engines" msgid "Engine" msgstr "引擎" #: templates/columns_definitions/partitions.twig:86 -#, fuzzy -#| msgid "Data home directory" msgid "Data directory" -msgstr "数据主文件夹" +msgstr "数据文件夹" #: templates/columns_definitions/partitions.twig:87 -#, fuzzy -#| msgid "Save directory" msgid "Index directory" -msgstr "保存文件夹" +msgstr "索引文件夹" #: templates/columns_definitions/partitions.twig:88 -#, fuzzy -#| msgid "Matched rows:" msgid "Max rows" -msgstr "受影响的行数:" +msgstr "最大行数" #: templates/columns_definitions/partitions.twig:89 -#, fuzzy -#| msgid "rows" msgid "Min rows" -msgstr "浏览" +msgstr "最小行数" #: templates/columns_definitions/partitions.twig:90 -#, fuzzy -#| msgid "Table Search" msgid "Table space" -msgstr "普通搜索" +msgstr "表空间" #: templates/columns_definitions/partitions.twig:91 -#, fuzzy -#| msgid "Users" msgid "Node group" -msgstr "用户" +msgstr "节点用户" #: templates/table/relation/foreign_key_row.twig:15 -#, fuzzy, php-format -#| msgid "Foreign key constraint" +#, php-format msgid "Foreign key constraint %s has been dropped" -msgstr "外键约束" +msgstr "外键约束%s已被删除" #: templates/table/relation/foreign_key_row.twig:39 msgid "Constraint name" @@ -15469,17 +14710,13 @@ msgstr "限制名称" #: templates/table/structure/check_all_table_column.twig:76 #: templates/table/structure/actions_in_table_structure.twig:131 -#, fuzzy -#| msgid "CHAR textarea columns" msgid "Add to central columns" -msgstr "CHAR 文本框列" +msgstr "添加到中央列" #: templates/table/structure/check_all_table_column.twig:83 #: templates/table/structure/actions_in_table_structure.twig:127 -#, fuzzy -#| msgid "Remove column(s)" msgid "Remove from central columns" -msgstr "删除字段" +msgstr "从中心列中删除" #: templates/server/databases/databases_footer.twig:65 msgid "" @@ -15520,7 +14757,6 @@ msgid "subquery" msgstr "子查询" #: templates/columns_definitions/move_column.twig:7 -#, fuzzy msgid "first" msgstr "第一" @@ -15575,10 +14811,8 @@ msgid "Stacked" msgstr "堆叠" #: templates/table/chart/tbl_chart.twig:51 -#, fuzzy -#| msgid "Chart title" msgid "Chart title:" -msgstr "图表标题" +msgstr "图表标题:" #: templates/table/chart/tbl_chart.twig:56 msgid "X-Axis:" @@ -15617,16 +14851,14 @@ msgid "Value Column:" msgstr "数据值字段:" #: templates/table/chart/tbl_chart.twig:153 -#, fuzzy -#| msgid "Save as file" msgid "Save chart as image" -msgstr "保存为文件" +msgstr "将图表另存为图像" #: templates/login/twofactor/application_configure.twig:3 msgid "" "Please scan following QR code into the two-factor authentication app on your " "device and enter authentication code it generates." -msgstr "" +msgstr "请将以下QR码扫描到设备上的双因素身份验证应用程序中,然后输入它生成的身份验证码。" #: templates/login/header.twig:12 msgid "" @@ -15634,6 +14866,7 @@ msgid "" "lead to non working phpMyAdmin or a security risk. Please fix your server " "configuration to indicate HTTPS properly." msgstr "" +"服务器和客户端上指示的HTTPS之间不匹配。这可能导致phpMyAdmin无法正常工作或存在安全风险。请修复您的服务器配置以正确指示HTTPS。" #: templates/database/designer/query_details.twig:6 msgid "Active options" @@ -15644,80 +14877,66 @@ msgid "Table name" msgstr "数据表名" #: templates/columns_definitions/column_definitions_form.twig:40 -#, fuzzy -#| msgid "Add column(s)" msgid "column(s)" -msgstr "增加字段" +msgstr "列" #: templates/columns_definitions/column_definitions_form.twig:74 -#, fuzzy -#| msgid "Collation" msgid "Collation:" -msgstr "整理" +msgstr "整理:" #: templates/columns_definitions/column_definitions_form.twig:77 msgid "Storage Engine:" msgstr "存储引擎:" #: templates/columns_definitions/column_definitions_form.twig:82 -#, fuzzy -#| msgid "Connections" msgid "Connection:" -msgstr "连接" +msgstr "连接:" #: templates/columns_definitions/column_definitions_form.twig:128 -#, fuzzy -#| msgid "PARTITION definition" msgid "PARTITION definition:" -msgstr "分区定义" +msgstr "分区定义:" #: templates/start_and_number_of_rows_panel.twig:3 msgid "Start row:" msgstr "起始行:" #: templates/prefs_twofactor.twig:3 -#, fuzzy -#| msgid "Authentication settings." msgid "Two-factor authentication status" -msgstr "认证设置。" +msgstr "双因素身份验证状态" #: templates/prefs_twofactor.twig:9 msgid "" "Two-factor authentication is not available, please install optional " "dependencies to enable authentication backends." -msgstr "" +msgstr "双因素身份验证不可用,请安装可选的依赖项以启用身份验证后端。" #: templates/prefs_twofactor.twig:10 msgid "Following composer packages are missing:" -msgstr "" +msgstr "以下composer包缺失:" #: templates/prefs_twofactor.twig:18 msgid "Two-factor authentication is available and configured for this account." -msgstr "" +msgstr "可以为此帐户配置双因素身份验证。" #: templates/prefs_twofactor.twig:20 msgid "" "Two-factor authentication is available, but not configured for this account." -msgstr "" +msgstr "可以使用双因素身份验证,但不为此帐户配置。" #: templates/prefs_twofactor.twig:24 -#, fuzzy -#| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "Two-factor authentication is not available, enable phpMyAdmin configuration " "storage to use it." -msgstr "丢失 phpMyAdmin 高级功能数据表" +msgstr "双因素身份验证不可用,启用phpMyAdmin配置存储以使用它。" #: templates/prefs_twofactor.twig:33 msgid "You have enabled two factor authentication." -msgstr "" +msgstr "您已启用双因素身份验证。" #: templates/prefs_twofactor.twig:43 templates/prefs_twofactor.twig:54 #: templates/prefs_twofactor_configure.twig:2 -#, fuzzy -#| msgid "Config authentication" msgid "Configure two-factor authentication" -msgstr "Config 认证" +msgstr "配置双因素身份验证" #: templates/database/search/results.twig:12 #, php-format @@ -15726,12 +14945,9 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "在 %2$s 中找到 %1$s 个" #: templates/database/search/results.twig:56 -#, fuzzy -#| msgid "Total: %s match" -#| msgid_plural "Total: %s matches" msgid "Total: %count% match" msgid_plural "Total: %count% matches" -msgstr[0] "总计:找到 %s 个" +msgstr[0] "总计: %s 个匹配" #: templates/display/export/template_loading.twig:2 msgid "Export templates:" @@ -15776,26 +14992,21 @@ msgid "Session value" msgstr "会话值" #: templates/database/designer/edit_delete_pages.twig:6 -#, fuzzy -#| msgid "Page titles" msgid "Page to open" -msgstr "页面标题" +msgstr "要打开的页面" #: templates/database/designer/edit_delete_pages.twig:6 -#, fuzzy -#| msgid "Relation deleted" msgid "Page to delete" -msgstr "已删除关系" +msgstr "要删除的页面" #: templates/display/export/options_output.twig:26 msgid "Save output to a file" msgstr "保存为文件" #: templates/display/export/options_output.twig:51 -#, fuzzy, php-format -#| msgid "Skip tables larger than" +#, php-format msgid "Skip tables larger than %s MiB" -msgstr "跳过数据表,当大于" +msgstr "跳过大于 %s MiB的数据表" #: templates/display/export/options_output_separate_files.twig:7 msgid "Export databases as separate files" @@ -15809,43 +15020,31 @@ msgstr "将每个表导出为独立的文件" msgid "" "You are not using https to access phpMyAdmin, therefore FIDO U2F device will " "most likely refuse to authenticate you." -msgstr "" +msgstr "您没有使用https访问phpMyAdmin,因此FIDO U2F设备很可能拒绝对您进行身份验证。" #: templates/table/structure/display_partitions.twig:8 -#, fuzzy -#| msgid "No index defined!" msgid "No partitioning defined!" -msgstr "没有已定义的索引!" +msgstr "没有定义分区!" #: templates/table/structure/display_partitions.twig:11 -#, fuzzy -#| msgid "partitioned" msgid "Partitioned by:" -msgstr "已分区" +msgstr "分区来源:" #: templates/table/structure/display_partitions.twig:16 -#, fuzzy -#| msgid "partitioned" msgid "Sub partitioned by:" -msgstr "已分区" +msgstr "子分区来源:" #: templates/table/structure/display_partitions.twig:29 -#, fuzzy -#| msgid "Row length" msgid "Data length" -msgstr "行长度" +msgstr "数据长度" #: templates/table/structure/display_partitions.twig:30 -#, fuzzy -#| msgid "Row length" msgid "Index length" -msgstr "行长度" +msgstr "索引长度" #: templates/table/structure/display_partitions.twig:135 -#, fuzzy -#| msgid "partitioned" msgid "Partition table" -msgstr "已分区" +msgstr "分区表" #: templates/privileges/column_privileges.twig:21 #: templates/privileges/column_privileges.twig:22 @@ -15854,24 +15053,17 @@ msgid "None" msgstr "无" #: templates/error/report_form.twig:6 -#, fuzzy -#| msgid "" -#| "phpMyAdmin has encountered an error. We have collected data about this " -#| "error as well as information about relevant configuration settings to " -#| "send to the phpMyAdmin team to help us in debugging the problem." msgid "" "This report automatically includes data about the error and information " "about relevant configuration settings. It will be sent to the phpMyAdmin " "team for debugging the error." -msgstr "" -"phpMyAdmin遇到了错误。我们已经收集了关于这个错误的数据和有关设置信息以便发送" -"至phpMyAdmin开发团队来帮助我们处理这个问题。" +msgstr "此报告自动包含有关错误的数据和有关配置设置的信息。它将被发送到phpMyAdmin团队以调试错误。" #: templates/error/report_form.twig:12 msgid "" "Can you tell us the steps leading to this error? It decisively helps in " "debugging:" -msgstr "" +msgstr "你能告诉我们产生这个错误的步骤吗?它对帮助调试有巨大作用:" #: templates/error/report_form.twig:19 msgid "You may examine the data in the error report:" @@ -15907,18 +15099,14 @@ msgid "Reset zoom" msgstr "重置缩放" #: templates/privileges/add_privileges_routine.twig:3 -#, fuzzy -#| msgid "Add privileges on the following table" msgid "Add privileges on the following routine:" -msgstr "在下列数据表添加权限" +msgstr "在下列例程添加权限:" #: templates/login/twofactor/invalid.twig:2 -#, fuzzy -#| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "The configured two factor authentication is not available, please install " "missing dependencies." -msgstr "丢失 phpMyAdmin 高级功能数据表" +msgstr "配置的双因素身份验证不可用,请安装缺少的依赖项。" #: templates/table/tracking/structure_snapshot_columns.twig:47 #: templates/table/structure/table_structure_row.twig:34 @@ -15931,8 +15119,6 @@ msgid "Replace with:" msgstr "替换为:" #: templates/table/search/search_and_replace.twig:19 -#, fuzzy -#| msgid "as regular expression" msgid "Use regular expression" msgstr "使用正则表达式" @@ -15953,20 +15139,14 @@ msgid "Display order:" msgstr "显示顺序:" #: templates/columns_definitions/table_fields_definitions.twig:17 -#, fuzzy -#| msgid "" -#| "If column type is \"enum\" or \"set\", please enter the values using this " -#| "format: 'a','b','c'…
If you ever need to put a backslash (\"\\\") or " -#| "a single quote (\"'\") amongst those values, precede it with a backslash " -#| "(for example '\\\\xyz' or 'a\\'b')." msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'…
If you ever need to put a backslash (\"\") or a " "single quote (\"'\") amongst those values, precede it with a backslash (for " "example '\\\\xyz' or 'a\\'b')." msgstr "" -"如字段类型是“enum”或“set”,请使用以下格式输入:'a','b','c'…
如果需要输入" -"反斜杠(“\\”)或单引号(“'”),请在前面加上反斜杠(如 '\\\\xyz' 或 'a\\'b')。" +"如字段类型是“enum”或“set”,请使用以下格式输入:'a','b','c'…
如果需要输入反斜杠(“”)或单引号(“'”),请在前面加上反斜杠(如 '\\\\xyz' 或 'a\\'b')。" #: templates/columns_definitions/table_fields_definitions.twig:21 msgid "" @@ -15976,7 +15156,7 @@ msgstr "对于默认值,请只输入单个值,不要加反斜杠或引号, #: templates/columns_definitions/table_fields_definitions.twig:59 msgid "Virtuality" -msgstr "" +msgstr "虚拟" #: templates/columns_definitions/table_fields_definitions.twig:65 msgid "Move column" @@ -15984,55 +15164,39 @@ msgstr "移动字段" #: templates/columns_definitions/table_fields_definitions.twig:76 #: templates/columns_definitions/table_fields_definitions.twig:87 -#, fuzzy -#| msgid "Available transformations" msgid "List of available transformations and their options" -msgstr "可用的转换" +msgstr "可用转换列表及其选项" #: templates/columns_definitions/table_fields_definitions.twig:82 -#, fuzzy -#| msgid "Browser transformation" msgid "Browser display transformation options" -msgstr "浏览器转换" +msgstr "浏览器显示转换选项" #: templates/columns_definitions/table_fields_definitions.twig:83 #: templates/columns_definitions/table_fields_definitions.twig:94 -#, fuzzy -#| msgid "" -#| "Please enter the values for transformation options using this format: " -#| "'a', 100, b,'c'…
If you ever need to put a backslash (\"\\\") or a " -#| "single quote (\"'\") amongst those values, precede it with a backslash " -#| "(for example '\\\\xyz' or 'a\\'b')." msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'…
If you ever need to put a backslash (\"\\\") or a single " "quote (\"'\") amongst those values, precede it with a backslash (for example " "'\\\\xyz' or 'a\\'b')." msgstr "" -"请使用此格式输入转换选项的值:'a',100,b,'c'…
如果您需要在值中输入反斜杠 " -"(“\\”)或单引号(“'”),请在前面加上反斜杠 (如 '\\\\xyz' 或 'a\\'b')。" +"请使用此格式输入转换选项的值:'a',100,b,'c'…
如果您需要在值中输入反斜杠 (“\\”)或单引号(“'”),请在前面加上反斜杠 (" +"如 '\\\\xyz' 或 'a\\'b')。" #: templates/columns_definitions/table_fields_definitions.twig:93 -#, fuzzy -#| msgid "Transformation options" msgid "Input transformation options" -msgstr "转换选项" +msgstr "输入转换选项" #: templates/database/designer/table_list.twig:4 msgid "Hide/Show all" msgstr "全部隐藏/显示" #: templates/database/designer/table_list.twig:14 -#, fuzzy -#| msgid "Hide/Show Tables with no relation" msgid "Hide/Show tables with no relationship" msgstr "隐藏/显示没有关联的表" #: templates/database/designer/table_list.twig:55 -#, fuzzy -#| msgid "Number of tables" msgid "Number of tables:" -msgstr "数据表数量" +msgstr "数据表数量:" #: templates/table/gis_visualization/gis_visualization.twig:3 msgid "Display GIS Visualization" @@ -16068,8 +15232,6 @@ msgid "Add %s column(s)" msgstr "添加 %s 个字段" #: templates/table/structure/add_column.twig:14 -#, fuzzy -#| msgid "At Beginning of Table" msgid "at beginning of table" msgstr "于表开头" @@ -16086,7 +15248,7 @@ msgstr "字段数" msgid "" "Please connect your FIDO U2F device into your computer's USB port. Then " "confirm login on the device." -msgstr "" +msgstr "请将您的FIDO U2F设备连接到计算机的USB端口。然后确认在设备上登录。" #: templates/database/qbe/footer_options.twig:3 msgid "Add/Delete criteria rows" @@ -16097,67 +15259,51 @@ msgid "Add/Delete columns" msgstr "添加/删除字段" #: templates/database/designer/page_save_as.twig:17 -#, fuzzy -#| msgid "Export to selected page" msgid "Save to selected page" -msgstr "导出至所选页" +msgstr "保存至所选页" #: templates/database/designer/page_save_as.twig:17 -#, fuzzy -#| msgid "Create a page and export to it" msgid "Create a page and save to it" -msgstr "导出至新页" +msgstr "创建并保存页面" #: templates/database/designer/page_save_as.twig:30 -#, fuzzy -#| msgid "New page name: " msgid "New page name" -msgstr "新页面名: " +msgstr "新页面名" #: templates/table/relation/common_form.twig:6 -#, fuzzy -#| msgid "Foreign key constraint" msgid "Foreign key constraints" msgstr "外键约束" #: templates/table/relation/common_form.twig:10 -#, fuzzy -#| msgid "Action" msgid "Actions" msgstr "操作" #: templates/table/relation/common_form.twig:11 -#, fuzzy -#| msgid "Constraints for table" msgid "Constraint properties" -msgstr "限制表" +msgstr "限制属性" #: templates/table/relation/common_form.twig:15 msgid "" "Creating a foreign key over a non-indexed column would automatically create " "an index on it. Alternatively, you can define an index below, before " "creating the foreign key." -msgstr "" +msgstr "在非索引列上创建外键将自动在其上创建索引。或者,您可以在创建外键之前在下面定义索引。" #: templates/table/relation/common_form.twig:20 msgid "" "Only columns with index will be displayed. You can define an index below." -msgstr "" +msgstr "仅显示具有索引的列。您可以在下面定义索引。" #: templates/table/relation/common_form.twig:24 msgid "Foreign key constraint" msgstr "外键约束" #: templates/table/relation/common_form.twig:89 -#, fuzzy -#| msgid "Add constraints" msgid "+ Add constraint" -msgstr "添加约束" +msgstr "+ 添加约束" #: templates/table/relation/common_form.twig:99 #: templates/table/relation/common_form.twig:104 -#, fuzzy -#| msgid "Internal relations" msgid "Internal relationships" msgstr "内联" @@ -16172,10 +15318,8 @@ msgid "" msgstr "不需要一个和外键关系一致的内联关系。" #: templates/table/relation/common_form.twig:172 -#, fuzzy -#| msgid "Choose column to display" msgid "Choose column to display:" -msgstr "选择要显示的字段" +msgstr "选择要显示的字段:" #: templates/privileges/delete_user_fieldset.twig:3 msgid "Remove selected user accounts" @@ -16193,8 +15337,6 @@ msgstr "删除与用户同名的数据库。" #: templates/database/designer/options_panel.twig:34 #: templates/database/designer/options_panel.twig:200 -#, fuzzy -#| msgid "Relation operator" msgid "Relationship operator" msgstr "关系运算符" @@ -16211,8 +15353,6 @@ msgid "Relational key" msgstr "关联键" #: templates/display/results/options_block.twig:30 -#, fuzzy -#| msgid "Display column for relations" msgid "Display column for relationships" msgstr "显示关联的字段" @@ -16254,44 +15394,36 @@ msgid "" msgstr "“PRIMARY”必须而且只能作为主键的名称!" #: templates/table/index_form.twig:34 -#, fuzzy -#| msgid "Index cache size" msgid "Index choice:" -msgstr "索引缓存大小" +msgstr "索引选择:" #: templates/table/index_form.twig:42 -#, fuzzy -#| msgid "Active options" msgid "Advanced Options" -msgstr "当前选项" +msgstr "高级选项" #: templates/table/index_form.twig:48 msgid "Key block size:" -msgstr "" +msgstr "密钥块大小:" #: templates/table/index_form.twig:65 msgid "Index type:" msgstr "索引类型:" #: templates/table/index_form.twig:77 -#, fuzzy -#| msgid "User:" msgid "Parser:" -msgstr "用户:" +msgstr "解析器:" #: templates/table/index_form.twig:93 msgid "Comment:" msgstr "注释:" #: templates/table/index_form.twig:136 templates/table/index_form.twig:173 -#, fuzzy -#| msgid "Drag to reorder." msgid "Drag to reorder" -msgstr "拖拽以调整顺序。" +msgstr "拖拽以重排顺序" #: templates/server/variables/variable_row.twig:6 msgid "This is a read-only variable and can not be edited" -msgstr "" +msgstr "这是一个只读变量,无法编辑" #: templates/table/structure/display_table_stats.twig:14 msgid "Space usage" @@ -16302,16 +15434,13 @@ msgid "Effective" msgstr "有效" #: templates/prefs_twofactor_configure.twig:8 -#, fuzzy -#| msgid "Config authentication" msgid "Enable two-factor authentication" -msgstr "Config 认证" +msgstr "启用双因素身份验证" #: templates/database/structure/show_create_row.twig:7 -#, fuzzy, php-format -#| msgid "Create User" +#, php-format msgid "Create %s" -msgstr "新建用户" +msgstr "新建%s" #: templates/database/structure/structure_table_row.twig:222 msgid "in use" @@ -16334,20 +15463,16 @@ msgid "gzipped" msgstr "gzip 压缩" #: url.php:41 -#, fuzzy -#| msgid "Taking you to next step…" msgid "Taking you to the target site." -msgstr "等待进入下一步…" +msgstr "带你到目标网站。" #: user_password.php:35 msgid "You don't have sufficient privileges to be here right now!" msgstr "权限不足!" #: view_create.php:51 -#, fuzzy -#| msgid "View name can not be empty" msgid "View name can not be empty!" -msgstr "请勿使用空白视图名" +msgstr "视图名不可为空!" #: view_operations.php:103 msgid "Rename view to" @@ -16524,10 +15649,8 @@ msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "版本低于 5.5.8 (5.5 的第一个 GA 版本)。" #: libraries/advisory_rules.txt:118 -#, fuzzy -#| msgid "You should upgrade, to a stable version of MySQL 5.5" msgid "You should upgrade, to a stable version of MySQL 5.5." -msgstr "您应升级到 MySQL 5.5 的稳定版本" +msgstr "您应升级到 MySQL 5.5 的稳定版本。" #: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 msgid "Distribution" @@ -16800,14 +15923,10 @@ msgid "Too many sorts are causing temporary tables." msgstr "过多排序引发临时表创建。" #: libraries/advisory_rules.txt:208 libraries/advisory_rules.txt:215 -#, fuzzy -#| msgid "" -#| "Consider increasing {sort_buffer_size} and/or {read_rnd_buffer_size}, " -#| "depending on your system memory limits" msgid "" "Consider increasing {sort_buffer_size} and/or {read_rnd_buffer_size}, " "depending on your system memory limits." -msgstr "根据系统内存,考虑增加 {sort_buffer_siz}e 和/或 {read_rnd_buffer_size}" +msgstr "根据系统内存限制,考虑增加 {sort_buffer_size} 和/或 {read_rnd_buffer_size}。" #: libraries/advisory_rules.txt:209 #, php-format @@ -16835,20 +15954,12 @@ msgid "There are lots of rows being sorted." msgstr "大量行被排序。" #: libraries/advisory_rules.txt:222 -#, fuzzy -#| msgid "" -#| "While there is nothing wrong with a high amount of row sorting, you might " -#| "want to make sure that the queries which require a lot of sorting use " -#| "indexed columns in the ORDER BY clause, as this will result in much " -#| "faster sorting" msgid "" "While there is nothing wrong with a high amount of row sorting, you might " "want to make sure that the queries which require a lot of sorting use " "indexed columns in the ORDER BY clause, as this will result in much faster " "sorting." -msgstr "" -"大量行排序不是什么错误,但您应确保需要大量排序的查询在 ORDER BY 中使用索引字" -"段,这将使排序加快" +msgstr "大量行排序不是什么错误,但您应确保需要大量排序的查询在 ORDER BY 中使用索引字段,这将使排序加快。" #: libraries/advisory_rules.txt:223 #, php-format @@ -16864,16 +15975,10 @@ msgid "There are too many joins without indexes." msgstr "有太多的联合查询未使用索引。" #: libraries/advisory_rules.txt:230 -#, fuzzy -#| msgid "" -#| "This means that joins are doing full table scans. Adding indexes for the " -#| "columns being used in the join conditions will greatly speed up table " -#| "joins" msgid "" "This means that joins are doing full table scans. Adding indexes for the " "columns being used in the join conditions will greatly speed up table joins." -msgstr "" -"这意味着联合查询使用全表扫描。给联合条件所用的字段增加索引将极大提高查询速度" +msgstr "这意味着联合查询使用全表扫描。给联合条件所用的字段增加索引将极大提高查询速度。" #: libraries/advisory_rules.txt:231 #, php-format @@ -16951,10 +16056,8 @@ msgid "" msgstr "下一行读取率: %s,该值应低于 1 每小时" #: libraries/advisory_rules.txt:255 -#, fuzzy -#| msgid "tmp_table_size vs. max_heap_table_size" msgid "Different tmp_table_size and max_heap_table_size" -msgstr "tmp_table_size 对比 max_heap_table_size" +msgstr "不同的 tmp_table_size 和 max_heap_table_size" #: libraries/advisory_rules.txt:258 msgid "{tmp_table_size} and {max_heap_table_size} are not the same." @@ -17248,20 +16351,14 @@ msgid "Slow launch time" msgstr "慢启动时间" #: libraries/advisory_rules.txt:368 -#, fuzzy -#| msgid "Slow_launch_time is above 2s" msgid "Slow_launch_time is above 2s." -msgstr "Slow_launch_time 大于 2 秒" +msgstr "Slow_launch_time 大于 2 秒。" #: libraries/advisory_rules.txt:369 -#, fuzzy -#| msgid "" -#| "Set {slow_launch_time} to 1s or 2s to correctly count threads that are " -#| "slow to launch" msgid "" "Set {slow_launch_time} to 1s or 2s to correctly count threads that are slow " "to launch." -msgstr "设置 {slow_launch_time} 为 1 秒或 2 秒以正确计算启动慢的线程数" +msgstr "设置 {slow_launch_time} 为 1 秒或 2 秒以正确计算启动慢的线程数。" #: libraries/advisory_rules.txt:370 #, php-format @@ -17419,17 +16516,7 @@ msgid "The InnoDB log file size is inadequately large." msgstr "InnoDB 日志文件大小设置的不够大。" #: libraries/advisory_rules.txt:429 -#, fuzzy, php-format -#| msgid "" -#| "It is usually sufficient to set {innodb_log_file_size} to 25%% of the " -#| "size of {innodb_buffer_pool_size}. A very big {innodb_log_file_size} " -#| "slows down the recovery time after a database crash considerably. See " -#| "also this Article. You need to shutdown the " -#| "server, remove the InnoDB log files, set the new value in my.cnf, start " -#| "the server, then check the error logs if everything went fine. See also " -#| "this blog entry" +#, php-format msgid "" "It is usually sufficient to set {innodb_log_file_size} to 25%% of the size " "of {innodb_buffer_pool_size}. A very big {innodb_log_file_size} slows down " @@ -17441,13 +16528,12 @@ msgid "" "\"https://mysqldatabaseadministration.blogspot.com/2007/01/increase-" "innodblogfilesize-proper-way.html\">this blog entry" msgstr "" -"通常将 {innodb_log_file_size} 设置为 {innodb_buffer_pool_size} 的 25%% 已经足" -"够。过大的 {innodb_log_file_size} 将会严重减慢数据库崩溃后的恢复时间。参见这篇文章。您首先需要关闭服务器,移除 InnoDB 日志" -"文件,然后在 my.cnf 中设置新的值,最后启动服务器,并检查错误日志确定一切都正" -"常。参见这篇博客" +"通常将 {innodb_log_file_size} 设置为 {innodb_buffer_pool_size} 的 25%% 已经足够。过大的 " +"{innodb_log_file_size} 将会严重减慢数据库崩溃后的恢复时间。参见这篇文章。您首先需要关闭服务器," +"移除 InnoDB 日志文件,然后在 my.cnf 中设置新的值,最后启动服务器,并检查错误日志确定一切都正常。另见这篇博客" #: libraries/advisory_rules.txt:430 #, php-format @@ -17476,6 +16562,11 @@ msgid "" "\"https://www.percona.com/blog/2007/11/03/choosing-innodb_buffer_pool_size/" "\">this article" msgstr "" +"InnoDB缓冲池对InnoDB表的性能有着深远的影响。将所有剩余内存分配给此缓冲区。对于仅使用InnoDB作为存储引擎并且没有其他服务(例如Web服务器" +")运行的数据库服务器,您可以将其设置为高达可用内存的80%%。如果不是这种情况,则需要仔细评估其他服务和非InnoDB-" +"Tables的内存消耗,并相应地设置此变量。如果设置得太高,系统将开始使用交换内存,这会显着降低性能。另请参见这篇文章" #: libraries/advisory_rules.txt:437 #, php-format diff --git a/po/zh_TW.po b/po/zh_TW.po index 14d3bc3f9d..b79a2440a9 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -4,16 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.8.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2018-02-12 16:30+0100\n" -"PO-Revision-Date: 2017-06-03 10:16+0000\n" -"Last-Translator: 某玩家 \n" +"PO-Revision-Date: 2018-08-09 18:35+0000\n" +"Last-Translator: popcorner \n" "Language-Team: Chinese (Traditional) \n" +"phpmyadmin/4-8/zh_Hant/>\n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 2.15-dev\n" +"X-Generator: Weblate 3.2-dev\n" #: ajax.php:21 ajax.php:50 export.php:203 libraries/classes/Export.php:1100 msgid "Bad type!" @@ -3227,8 +3227,6 @@ msgid "Russian" msgstr "俄語" #: libraries/classes/Charsets.php:363 -#, fuzzy -#| msgid "Simplified Chinese" msgctxt "Collation" msgid "Simplified Chinese" msgstr "簡體中文" @@ -3255,11 +3253,9 @@ msgid "Armenian" msgstr "亞美尼亞語" #: libraries/classes/Charsets.php:383 -#, fuzzy -#| msgid "Traditional Chinese" msgctxt "Collation" msgid "Traditional Chinese" -msgstr "正體中文" +msgstr "繁體中文" #: libraries/classes/Charsets.php:386 #, fuzzy @@ -3355,7 +3351,7 @@ msgstr "保加利亞語" #: libraries/classes/Charsets.php:440 msgctxt "Collation" msgid "Chinese" -msgstr "" +msgstr "中文" #: libraries/classes/Charsets.php:445 #, fuzzy diff --git a/templates/columns_definitions/partitions.twig b/templates/columns_definitions/partitions.twig index 9cc8bfd20f..bede07f621 100644 --- a/templates/columns_definitions/partitions.twig +++ b/templates/columns_definitions/partitions.twig @@ -46,7 +46,7 @@